Check documentation for the latest version of dhtmlxSuite onXLE DHTMLX Docs

onXLE

fires simultaneously with ending XML parsing, new items are already available in the grid

void onXLE(object grid_obj,number count);
grid_objobjectthe grid object
countnumberthe count of added rows

Available only in PRO Edition

Example

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

Back to top