Server Side Pagination in Kendo Grid

For More Videos Visit Our YouTube Channel

Lets go with one simple example here.
Server Side Pagination In Kendo Grid, Server Side Datasource In Kendo Grid, Kendo Grid Server Side Pagination, Kendo Grid Pagination Not Working, Kendo, Kendo UI, Kendo Grid, Kendo UI Grid, Pagination, Server Side, Serverside
The above image shows a kendo ui grid where we can specify datasource. On the datasource, give the controller name and method name from where the data can be obtained.



On the code behind, go to the specified controller and create a method named as in the UI. The input of this method should be DataSourceRequest. In DataSourceRequest, you will get current instance of pagination, sorting or any instance of grid. The output of this method should be JsonResult. Inside the method, write down the code for doing pagination, sorting or even filtering the data as per the input Request.

Server Side Pagination In Kendo Grid, Server Side Datasource In Kendo Grid, Kendo Grid Server Side Pagination, Kendo Grid Pagination Not Working, Kendo, Kendo UI, Kendo Grid, Kendo UI Grid, Pagination, Server Side, Serverside