Hi,
I'd like to use the treeview, and simultaneously drag and drop elements outside it to the nodes in it.
What I'd like to do is:
1. When manipulating the nodes in the treeview, it acts as the defaults of tree view
2. When dragging the element outside the treeview and drop it in the treeview, it fires my dropTargetOnDrop function.
I have tried the followings:
1. Set the draggable element
2. Set the dropTarget elements
I'd like to use the treeview, and simultaneously drag and drop elements outside it to the nodes in it.
What I'd like to do is:
1. When manipulating the nodes in the treeview, it acts as the defaults of tree view
2. When dragging the element outside the treeview and drop it in the treeview, it fires my dropTargetOnDrop function.
I have tried the followings:
1. Set the draggable element
$("#draggable").kendoDraggable({group: "list", ....});
$(".k-in").kendoDropTarget({group: "list", dragEnter: dropTargetOnDragEnter, ...});
The result is the manipulation the nodes in the treeview fires my dropTargetOnDragEnter function.
Could you please give me some advices?
Thanks in advance.
Michio SHIRAISHI