Hi,
I tried to move from MVC 3 to mvc 4. unfortunately, the following code is working properly on mvc 3, but on mvc4 rc shows "No records to display". how to avoid this issue?
@(Html.Kendo().Grid<Object>()
.Name("GridTest")
.DataSource(dataSource => dataSource
.Ajax()
.Read(read => read.Action("Test_Read", "Home"))
)
.Resizable(resize => resize.Columns(true))
.Reorderable(reorder => reorder.Columns(true))
Thanks,
peter
I tried to move from MVC 3 to mvc 4. unfortunately, the following code is working properly on mvc 3, but on mvc4 rc shows "No records to display". how to avoid this issue?
@(Html.Kendo().Grid<Object>()
.Name("GridTest")
.DataSource(dataSource => dataSource
.Ajax()
.Read(read => read.Action("Test_Read", "Home"))
)
.Resizable(resize => resize.Columns(true))
.Reorderable(reorder => reorder.Columns(true))
Thanks,
peter