fires after a row has been deleted from the grid
id | string|number | the id of the deleted item |
pid | string|number | the parent ID, makes sense for TreeGrid only |
grid.attachEvent("onAfterRowDeleted", function(id,pid){
//your code here
});
Back to top