This question is locked. New answers and comments are not allowed.
Is there a way to manually set paging on a grid? I'm using onDataBinding to call an ajax function, which then calls grid.dataBind with the results. The controller only returns the number of results that can be displayed on one page of the grid, as json results can't be IQueryable. And the paging always says 0 of 0 results.
So, is there a way to say "the grid has 5000 records, and you're on page 6" programmatically? Or should I just hide the paging control and roll my own?
If it helps at all, here's the function that gets called from onLoad and onDataBinding:
So, is there a way to say "the grid has 5000 records, and you're on page 6" programmatically? Or should I just hide the paging control and roll my own?
If it helps at all, here's the function that gets called from onLoad and onDataBinding: