Get the page size and page number of kendo grid in Jquery

15,000

You can get page number by calling function page() on the dataSource object in kendo grid you have, and page size by calling function pageSize() of that object.

This is how you should do it, based on official Kendo UI documentation http://docs.kendoui.com/api/framework/datasource#methods-page :

$("#GRID_ID").data("kendoGrid").dataSource.pageSize();
$("#GRID_ID").data("kendoGrid").dataSource.page();
Share:
15,000
Anirudh Agarwal
Author by

Anirudh Agarwal

I am a software developer. Have knowledge on simple dotnet applications, WCSF and MVC framework.

Updated on July 30, 2022

Comments

  • Anirudh Agarwal
    Anirudh Agarwal almost 2 years

    I have a update button in grid. So when I click on update button I am able to get the data of the grid but,

    Can any one help me to find the PageSize and Page number of a Kendo Grid in the Jquery ?