Drag and drop into template view

Hi,
I would like to drag item from tree view and drop into template view. in template view i am implementing drawing graph for selected datapoint from tree view. Can you please show how to drag tree view element and drop into template view please. I am not finding events like onBeforeDrop etc on template view.

Hello @ganeshkp,
Please try to use Drag API to register droppable area:

webix.DragControl.addDrop( $$("template").$view );
//template will work as active drop target

Here’s a sample:
https://snippet.webix.com/j9dli98b

@annazankevich Thank you so much