Check documentation for the latest version of dhtmlxSuite onRowAdded DHTMLX Docs

onRowAdded

fires right after a row has been added to the grid

void onRowAdded(string|number rId);
rIdstring|numberthe id of a row

Available only in PRO Edition

Example

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

Back to top