Hi ilailo,
I’ve already seen this demo.
What event I must use and how to implement what I need (groups can’t be dropped in fields and fields can’t be dropped in fields) ?
There are two dragEnd events :
$(‘#treeB’).jqxTree({ allowDrag: true, allowDrop: true, height: ‘300px’, width: ‘220px’,
dragEnd: function (item, dropItem, args, dropPosition, tree) {
…
}
});
and…
$(“#treeA, #treeB”).on(‘dragEnd’, function (event) {
$(“#dragEndLog”).text(“Drag End”);
…
});
Which of these events use and how to test if I can drop ?
Thanks for your help
Guil