Server Side Pagination in Kendo Grid
Lets go with one simple example here.
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.