Hi,
I think I found a bug in the jqxTree / jqxDragdrop. This is reproducable in the demo (jQQWidgets/jqxTree/Drag and Drop) in all browsers.
The tree item “Forum” is supposed to be disabled:
$('#treeB').jqxTree({ allowDrag: true, allowDrop: true, height: '300px', width: '220px', theme: theme, dragEnd: function (item, dropItem, args, dropPosition, tree) { if (item.label == "Forum") return false; }});
However, this can be bypassed when you drag the item some inches below the tree (without hovering over nodes). Then, no drop indicator appears and the item “Forum” is dropped successfully on the tree.
With debugging I found out, that the dragEnd function simply doesn’t get invoked. Is there a way around this?
Best regards,
Stub0r