Check documentation for the latest version of dhtmlxSuite onDistributedEnd DHTMLX Docs

onDistributedEnd

fires on the end of distributed parsing

void onDistributedEnd();

Available only in PRO Edition

Example

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

Details

in the case of distributed parsing the onXLE event will mark just the moment when data was loaded and the first bunch of data was processed.
The moment when all data was processed and rendered can be detected by the onDistributedEnd event.

Back to top