Check documentation for the latest version of dhtmlxSuite onPageChanged DHTMLX Docs

onPageChanged

fires after the active page of the grid has been changed (paging extension)

void onPageChanged(number ind,number fInd,number lInd);
indnumberthe index of the current page
fIndnumberthe index of the first row of the page
lIndnumberthe index of the last row of the page

Available only in PRO Edition

Example

grid.attachEvent("onPageChanged", function(ind,fInd,lInd){
    // your code here
});

Back to top