I'm working with a drag and drop dynatree example somewhat similar to the one shown here, in that my tree has dnd enabled and is contained inside of a scrollable region. However, in that example when you try to drag a node outside the scrollable area, the area will just expand so that you remain constrained to that area. I would instead like to be able to drag the dynatree node outside the scrolling region.
If I were applying this functionality to an arbitrary element inside of a scrolling region, I would do the following:
$("#dndelement").draggable({
helper: "clone",
appendTo: "body"
});
I suspect I can do something similar in the dynatree case, but I don't know how I would actually implement this with dynatree's built-in drag and drop system.
EDIT
Also, the tree nodes are populated via AJAX, so they don't all exist when the page is initially loaded.