Check documentation for the latest version of dhtmlxSuite onDynXLS DHTMLX Docs

onDynXLS

fires before requesting additional data from the server in case of dynamic Smart Rendering or dynamic Paging

void onDynXLS(number start,number count);
startnumberthe position from which data requested
countnumberthe count of rows requested

Available only in PRO Edition

Example

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

Details

the event is blockable

Back to top