I create a new controlled called RoleController as UI for MVC Grid, it shows me "invalid modelo configuration".
My Role class is generated by EF6.
What's up?

Hi,
I have problem with getting seleted dataitem to controller from AutoComplete. This work only in popup editor on grid, but with Ajax.BeginForm not :(, I don't know how popup editor submit data to controler but it send complete dataitem. If I use AutoComplete on Window in Ajax.BeginForm it send only string value.
Please can you help me with this. I don't want use ComboBox.
Best regards,
Ludek

We are finding out that the text in a disabled cell is too difficult to read as the font color is a too light of a grey. Is there a way to easily change the font color so that it is more readable for users?
Thanks.
Scott Rafferty

I have a chart that uses grouping and creates a legend at the top of the chart. While the chart is rendering, the legend that appears at the top of the chart contains 'd NaN/NaN/0NaN' as seen in the attached screenshot. The legends should contain dates in the format of 'ddd dd/MM/yyyy', so I'm assuming the dates are not yet known, so the legend is displaying in this way.
Is there a way of hiding this until the legend actually has data, because having 'd NaN/NaN/0NaN' show up in the chart does not look good.
Regards,
Shawn
@model string@(Html.Kendo().Grid<SampleDataSummaryDto>() .Name("Grid") .Columns(columns => { columns.Bound(l => l.Id).Title("Name"); columns.Bound(p => p.CompanyName).Title("Company Name"); columns.Bound(p => p.PhoneNumber).Title("Phone"); columns.Bound(p => p.EmailAddress).Title("Email"); }) .HtmlAttributes(new { style = "height:450px" }) .Scrollable() .DataSource(dataSource => dataSource .Ajax() .Read(read => read.Action("SearchResults_Read", "Prospect", new { SearchText = Model })) ) ) public PartialViewResult loadSampleData(string SearchText) { return PartialView("EditorTemplates/loadSampleData", SearchText); }
public ActionResult SearchResults_Read(string SearchText)
{
var results= myService.GetByIdentifiers(SearchText, 20);
var dsResult = results.ToDataSourceResult(new DataSourceRequest());
return Json(dsResult);
}
I am passing the searchText to partial view and thinking that my Grid view use that search text asynchronously would call 'SearchResults_Read' and passing the SearchText as action param.
I appreciate any suggestions on why this is not working?
Thank You,
Uday

I have a page showing two grids, grid1 and grid2, and a separate stand alone button "export as excel"
I would like the button to make a single excel download with grid1 in worksheet1 and grid2 in worksheet2.
Q: Is this doable ?
Take the following PanelBar:
@(Html.Kendo().PanelBar() .Name("topicList") .BindTo(Model, mappings => { mappings.For<DropDownTopicList>(b => b.ItemDataBound((item, category) =>{ item.Text = category.Category; }).Children(category => category.Topics)); mappings.For<TopicBank>(b => b.ItemDataBound((item, topic) =>{ item.Id = topic.ID.ToString(); item.Text = topic.Title + " - " + topic.Description; })); }) .Events(ev => ev.Select("pbSelect")) )
How do I get the Id of the selected Item?
I'm trying to creare a new project, but I have noticed that it doesn't propose the choice of authentication type (like Microsoft template standard).
Is it correct?