When I drag and item over a node in my tree, I noticed that the node expands automatically. Problem is, is that when this occurs, the beforenodedrop event fires and then the expandnode. I need to use the beforenodedrop to ensure that the user is not dropping an item that already exists under the node. Having the node expand after the beforenodedrop event doesn't allow me to compare the item being dragged with any of the children under the target node.
Does anyone have a suggestion or a work around for this?
FYI, I have tried to do things in nodedragover and cannot use nodedrop because at that point the item has already been dropped.
Thanks