This question is locked. New answers and comments are not allowed.
When dragging and dropping between multiple trees the onNodeDrop(e) event gives me access to the drop target:
var target = $(e.dropTarget);
But from this "target", how do I get the Name of the target tree? I have 3 trees, and am dragging from one tree to one of two possible trees, so I need to verify which tree I'm dragging into.
var target = $(e.dropTarget);
But from this "target", how do I get the Name of the target tree? I have 3 trees, and am dragging from one tree to one of two possible trees, so I need to verify which tree I'm dragging into.