
I need to do so because I'm using a toolkit for receiving my requested data via REST calls. I am not able to use the automatic odata databinding because the Service is a WCF Svc and it does not support $callback and $format parameters and I am not able to extend this wcf service.
So I make a call for getting the next 50 Items which I want to bind to the grid on 1 page.
It would be great if I can give the grid a function pointer for paging.
Thanks
5 Answers, 1 is accepted
In order to enable server paging you should set DataSource serverPaging option to true. Then when DataSource is populated the paging information (as page and pageSize parameters) will be send through the request. Note that you may re-map the query parameters to more server friendly format by using parameterMap function of the transport. Also have in mind that you should you set the schema's data and total fields to where the result and total number of items is located into the response.
Greetings,Rosen
the Telerik team

I just want to react if the user is clicking on page forward or page backward. Depending which page command gets executed I want to call my separate functions. In these functions I want to load my datasource (next/prior e.g. 50 entries).
I don't wan't to use automatic server calls.
Is there any way to do so?
Best regards
Unfortunately, this is not currently possible.
Greetings,Rosen
the Telerik team

Is there really no possible way what so ever to do this? I really need to do this in my project, I have spent a large amount of time adding this Grid control into my web project and only now just came to see that its not possible to do this?
There has to be a way to do manual paging? It would only require some event for paging forward and backward, and another property to tell the grid control how many pages to be displayed?
Thanks!
You can probably implement custom paging but you need to create the paging user interface by yourself. Then you need to call the page() method of the grid's dataSource to do the actual paging. Currently we don't have an example how to do this because paging is shipped as a built-in feature.
Regards,Atanas Korchev
the Telerik team