fires before item's deleting
id | string|number | the item's id |
boolean | true to allow item's deleting |
myTreeView.attachEvent("onBeforeDeleteItem",function(id){
// your code here
return true;
});
the event is blockable: return false to block the item's deleting
Back to top