fires before removing an item from a tree collection
removedItem | object | the object of an item to remove |
boolean | true/false to remove/not remove an item from a data collection |
data.events.on("BeforeRemove", function(removedItem){
console.log("An item will be removed");
return true;
});