The "Drag and Drop" system in Kendo is pretty good, but it has the distinct characteristic of being pretty much DOM only; It won't really "bind" to underlying data. This would be an extremely useful feature - the "suggested fix" for this right now is to use the kendo ListView and do a search for GUID on the events firing, and while this isn't really "bad", it's pretty cumbersome and kind of obtuse most of the time. I have spent extensive time looking at the source code for Drag and Drop, and it would not be very difficult to give it a newly exposed set of functions. The primary use for drag and drop is to move information from one place to another; I do not see a lot of situations where all of the information someone wants to move is just right there in the DOM. Every situation I see of Drag and Drop that people want to use involves moving DATA from one place to another, and the Drag and Drop on the DOM merely facilitates the actions in place of more cumbersome features like drop down lists. I realize this isn't the easiest of tasks to do, but as it is right now, the Drag and Drop part of Kendo is more of an eyecatch than a feature I see used a lot.