Hi David,
“updatebounddata” is a method which performs a new data binding and re-renders the Grid. If it is necessary, it will reset the scrollbar’s position or will change the page’s number. That is the behavior by design. If you want to get the current page, you can use the “getpaginginformation”. The “gotopage” method can be used after that to navigate to a specific page” .
Example 1:
var paginginformation = $('#jqxGrid').jqxGrid('getpaginginformation');
// The page's number.
var pagenum = paginginformation.pagenum;
// The page's size.
var pagesize = paginginformation.pagesize;
// The number of all pages.
var pagescount = paginginformation.pagescount;
Example 2:
$('#jqxGrid').jqxGrid('gotopage', 1);
Best Regards,
Peter Stoev
jQWidgets Team
http://www.jqwidgets.com/