Check documentation for the latest version of dhtmlxSuite onAfterDelete DHTMLX Docs

onAfterDelete

fires after item deleting is finished

void onAfterDelete(string|number id);
idstring|numberid of the item which was removed

Example

myDataView.attachEvent("onAfterDelete", function (id){
    // your code here
});

Back to top