fires when the item's dragging starts (the item is selected and the mouse is moving)
sId | string|number | id of the source item |
boolean | true - confirms drag-and-drop start, false - denies it (operation will not start) |
myTree.attachEvent("onBeforeDrag", function(sId){
// your code here
});
Back to top