fires before drag operation starts, cancelable
id | string|number | the id of the dragged item |
boolean | true to allow operation |
myTreeView.attachEvent("onBeforeDrag", function(id){
//your code here
return true;
});
the event can be blocked:return false to block the row's dragging
Back to top