I'm filling up the kendo grid with a couple of rows and want to implement drag/drop functionality between the grid and other html components.
I can find a lot of resources telling how to drag/drop/sort rows inside a grid, even from one grid to another grid, but nothing really for outside the grid to another component.
Does kendo ui-grid even support this?
One way I can think is - make the entire grid draggable and when drag starts get currently selected row data and use that on drop. But that's not really a very clean way to do it. I'll even need to make a custom drag image in this case.
Any other suggestions?
tbody
of the grid draggable, define a visible element when dragging, and define the drop target. If you look at Kendo's own code, this is exactly how the implementation of draggable rows within it's grid is implemented. – Brett