I have been able to get it working, but only part of the time - as in some drags will register, but others will slide back to the original spot and not work. This is as stripped down as I can make it not work:
With that, the drops will not register (nothing gets logged), but if I simply change 'div#drop' to 'body' (so it catches everything), the drop will log. What am I not understanding? I have nothing else on this test page other than a jquery 1.8.2 reference and kendo. Thank you.
<div> <div id="drop" style="border: solid 1px green; "> bla<br />bla<br />bla<br />bla<br />bla<br /> </div> <ul> <li id="t5" style="border:solid 1px red;">T5</li> </ul></div> <script type="text/javascript"> $(function () { $('#t5').kendoDraggable({ hint: function (e) { return e.clone(); } }); $('div#drop').kendoDropTarget({ drop: function (e) { console.log(e); } }); });</script>With that, the drops will not register (nothing gets logged), but if I simply change 'div#drop' to 'body' (so it catches everything), the drop will log. What am I not understanding? I have nothing else on this test page other than a jquery 1.8.2 reference and kendo. Thank you.