Check documentation for the latest version of dhtmlxSuite onPaging DHTMLX Docs

onPaging

fires each time when paging settings are changed (paging extension)

void onPaging(number count);
countnumberthe count of pages

Available only in PRO Edition

Example

grid.attachEvent("onPaging", function(count){
    // your code here
});

Back to top