Closed GoogleCodeExporter closed 9 years ago
Yes, draggable.options.revert may be set 'invalid', I updated Dynatree and the
sample-dnd3.
The default behavior only checks, if we dropped over an element that is
'droppable'.
So a droppable dynatree is always considered valid.
I played around with the fact that revert may also be passed a function.
If we check there if the helper was marked 'rejected', we can return 'true'.
I commit this to the trunk, maybe you like to test or can improve this...
(Also still open: the helper reverts to the top-left of the tree control, not
to the original source node position)
Original comment by moo...@wwwendt.de
on 9 Apr 2013 at 8:06
https://code.google.com/p/dynatree/source/detail?r=658
Original comment by moo...@wwwendt.de
on 9 Apr 2013 at 8:10
Wow, that's great. I'll give it a try tomorrow and let you know. Thanks!
Original comment by john.a.s...@gmail.com
on 9 Apr 2013 at 8:32
So here's the upshot: change droppable option tolerance: from "intersect"
to "pointer" on either the current production version or the newest
version on the trunk and it works. Perhaps a better explanation of what
i'm trying to do is for dnd example 3 i'm trying to drop the "drag me
around" box on the tree. If it succeeds, it should not revert. If it
isn't a valid drop, it should. Changing the tolerance to pointer did the
trick. It also didn't seem to bother moving nodes around on the tree
either, and avoids the helper reverting to the upper left. Hope that
helps, you sure helped me, thanks!
On Tue, Apr 9, 2013 at 4:31 PM, John Schroeder
<john.a.schroeder@gmail.com>wrote:
Original comment by john.a.s...@gmail.com
on 10 Apr 2013 at 10:34
hmm, when I tested r658 I had this behavior in dnd3:
- dropping 'drag me around' over a sub node in the right tree is accepted. The
helper does not revert.
- dropping a node from the left tree over a sub node in the right tree is
accepted. The helper does not revert.
- dropping 'drag me around' over a folder in the right tree is rejected. The
helper reverts OK.
- dropping a node from the left tree over a folder in the right tree is
rejected. The helper reverts to the top left corner of the left tree's
container.
- dropping a node from the left tree over the left tree is rejected. The helper
reverts to the top left corner of the left tree's container.
(The last two points are still a minor flaw)
I just tried to change 'tolerance' to 'pointer' but cannot see any change.
Maybe you changed s.th. else?
(I am going to use 'pointer' anyway, since it seems to be the better choice
regarding the documentation)
Original comment by moo...@wwwendt.de
on 13 Apr 2013 at 3:06
Ah, I changed it to pointer in version 1.2.4 and that was the only thing i
changed to get it working for my draggables. Revert is just "false".
Specifically:
// Attach ui.droppable to this Dynatree instance
if(dnd && dnd.onDrop) {
tree.$tree.droppable({
addClasses: false,
tolerance: "pointer",
greedy: false,
_last: null
});
}
FYI i have not tested dropping nodes from one tree onto another, just
external divs like "drag me around" and it reverts when not dropped and
does not revert when dropped.
Original comment by john.a.s...@gmail.com
on 13 Apr 2013 at 7:13
made dnd.revert configurable (r664) but enabling it will still slide back to
top-left of the source tree's container.
So default is 'false'
Als the sample now enables revert for for the Droppable
http://wwwendt.de/tech/dynatree/doc/sample-dnd3.html
$("#draggableSample").draggable({
// revert: "invalid", // slide back, when dropping over non-target
revert: function(dropped){
// Return `true` to let the helper slide back.
if(typeof dropped === "boolean"){
// dropped == true, when dropped over a simple, valid droppable target.
// false, when dropped outside a drop target.
return !dropped;
}
// Drop comes from another tree. Default behavior is to assume
// a valid drop, since we are over a drop-target.
// Therefore we have to make an extra check, if the target node
// was rejected by a Dynatree callback.
var helper = $.ui.ddmanager && $.ui.ddmanager.current && $.ui.ddmanager.current.helper;
var isRejected = helper && helper.hasClass("dynatree-drop-reject");
return isRejected;
},
connectToDynatree: true,
cursorAt: { top: -5, left:-5 },
helper: "clone"
});
Original comment by moo...@wwwendt.de
on 13 Apr 2013 at 8:40
Original issue reported on code.google.com by
john.a.s...@gmail.com
on 9 Apr 2013 at 1:39