Hi
I've upgraded to the latest version and suddenly my grids aren't working well. I cannot sort, nor use the pager when binding to remote data. I've also noticed that there is no mvc example in the remote data example of the grid.
The pager is showing a zero page count.
I am returning data in json form like so:
This used to work well before the update.
I've upgraded to the latest version and suddenly my grids aren't working well. I cannot sort, nor use the pager when binding to remote data. I've also noticed that there is no mvc example in the remote data example of the grid.
The pager is showing a zero page count.
I am returning data in json form like so:
return
Json(
new
DataSourceResult
{
Data = users,
Total = Convert.ToInt32(count)
}, JsonRequestBehavior.AllowGet);