Check documentation for the latest version of dhtmlxSuite onDeleteItem DHTMLX Docs

onDeleteItem

fires when an item is deleted

void onDeleteItem(string|number id);
idstring|numberthe item's id

Example

myTreeView.attachEvent("onDeleteItem", function(id){
    // your code here
});

Back to top