I'm trying to drag and drop from a Kendo TreeView to a div (in AngularJS).
This plunker doesn't work, as I'm not telling the TreeView that the dropHere div is a drop target.
In jQuery I would use,
$("#dropHere ").kendoDropTarget();
but what is the Angular way?
The parameter "e" of drop function have a property named valid, use this to decide if you can drop your item. On div, append a repeat structure, pointing to a array. if is drop.valid, push the item to the array. The angularjs will make the rest.