Check documentation for the latest version of dhtmlxSuite onRowCreated DHTMLX Docs

onRowCreated

fires after a row has been created in the grid and filled with data

void onRowCreated(string|number rId,object rObj,object rXML);
rIdstring|numberthe id of a row
rObjobjectthe row object
rXMLobjectthe related XML (if available)

Available only in PRO Edition

Example

grid.attachEvent("onRowCreated", function(rId,rObj,rXml){
    // your code here
});

Back to top