Hello mijus,
Please call the getpaginginformation method to determine the page size and number of pages, e.g.:
var paginginformation = $('#jqxgrid').jqxGrid('getpaginginformation');var pagenum = paginginformation.pagenum;var pagesize = paginginformation.pagesize;var pagescount = paginginformation.pagescount;
To get the number of all the rows in a grid, invoke the getrows method:
var rows = $('#jqxgrid').jqxGrid('getrows');var rowscount = rows.length;
Best Regards,
Dimitar
jQWidgets team
http://www.jqwidgets.com/