This question is locked. New answers and comments are not allowed.
I have set up my grid, with paging, and all is working well. I am using MS SQL Server for a database server. Using profiling, I can see that the complete dataset is pulled from the server on each request. I suppose the paging is being done on the web server in my client code.
I would like to set up paging so that only <pageSize> ( i.e.
) fifty rows in this case ) rows are pulled from the underlying data source for each data request.
I have been searching around, but how to do this is eluding me.
I would like to set up paging so that only <pageSize> ( i.e.
.Pageable(page=>page.PageSize(50)I have been searching around, but how to do this is eluding me.