Check documentation for the latest version of dhtmlxSuite onAfterRowDeleted DHTMLX Docs

onAfterRowDeleted

fires after a row has been deleted from the grid

void onAfterRowDeleted(string|number id, [string|number pid] );
idstring|numberthe id of the deleted item
pidstring|numberthe parent ID, makes sense for TreeGrid only

Example

grid.attachEvent("onAfterRowDeleted", function(id,pid){
    //your code here
});

Back to top