Check documentation for the latest version of dhtmlxSuite onGridCreated DHTMLX Docs

onGridCreated

fires immediately after a grid has been created

void onGridCreated(object grid_obj);
grid_objobjecta grid object

Example

myFileSelector.attachEvent("onGridCreated", function(grid_obj){
    // your code here
});

Back to top