Hi,
I am unsing Kendo with MVC 5. I am binding my Grid over Ajax ( see attached project and code below). I receive the Date for the LastModified column
with the Json result but the date is not displayed.
I have already made another project with kendo with a similar setup and everything worked perfectly
Hope you can help
@(Html.Kendo().Grid<Rainbow.ViewModels.CustomerViewModel>()
.Name("CustomersGrid")
.Events(events => events.DataBound("onDataBound").DataBinding("onDataBinding").DetailInit("onDetailInit"))
.DataSource(d => d.Ajax().Read(r => r.Action("CustomersGridData", "Customer")))
.Columns(c =>
{
c.Bound(i => i.Number).Title("Number");
c.Bound(i => i.LastModified).Title("LastModified");
})
.Sortable()
.Filterable()
.Pageable())
I am unsing Kendo with MVC 5. I am binding my Grid over Ajax ( see attached project and code below). I receive the Date for the LastModified column
with the Json result but the date is not displayed.
I have already made another project with kendo with a similar setup and everything worked perfectly
Hope you can help
@(Html.Kendo().Grid<Rainbow.ViewModels.CustomerViewModel>()
.Name("CustomersGrid")
.Events(events => events.DataBound("onDataBound").DataBinding("onDataBinding").DetailInit("onDetailInit"))
.DataSource(d => d.Ajax().Read(r => r.Action("CustomersGridData", "Customer")))
.Columns(c =>
{
c.Bound(i => i.Number).Title("Number");
c.Bound(i => i.LastModified).Title("LastModified");
})
.Sortable()
.Filterable()
.Pageable())