Check documentation for the latest version of dhtmlxSuite onDataReady DHTMLX Docs

onDataReady

fires when the data is loaded to the grid but hasn't been rendered yet

void onDataReady();

Example

mygrid.attachEvent("onDataReady",function(){
    // your code here
});

Back to top