This question is locked. New answers and comments are not allowed.
We are using ASP.NET MVC 2010.2 930 and find that when we rebind the grid from the client side (after assigning the ajax property), paging using next, previous or by clicking on the page numbers does not work. Here's the code that mimics what we are doing:
function
DoBind()
{
ajax =
new Object;
ajax.selectUrl =
'Home/_AjaxBinding';
var grid = $('#Emp').data('tGrid');
grid.ajax = ajax;
grid.rebind();
}
Is this a known bug? If so, when will it be fixed?