Check documentation for the latest version of dhtmlxSuite onBeforeRowDeleted DHTMLX Docs

onBeforeRowDeleted

fires right before a row is deleted

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

Available only in PRO Edition

Example

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

Back to top