fires when when a dragged item is moved over the droppable area, cancelable
id | string|number | the item's id |
pId | string|number | the parent's id |
index | number | the new item's index |
boolean | true to allow highlighting the drop area and an item can be dropped at a certain place |
myTreeView.attachEvent("onDragOver", function(id, pId, index){
// your code here
return true;
});
Back to top