You can get the page number by calling the page () function on the dataSource object in the kendo grid that you have, and the page size by calling the pageSize () function of this object.
Here's how you should do it based on the official documentation on the Kendo interface http://docs.kendoui.com/api/framework/datasource#methods-page :
$("#GRID_ID").data("kendoGrid").dataSource.pageSize(); $("#GRID_ID").data("kendoGrid").dataSource.page();
source share