デスクトップアイコンのドラッグアンドドロップをシミュレートする必要があります。これを行います:
$(".draggable").kendoDraggable({
container: $("#desktop"),
hint: function() {
return $(".draggable").clone();
},
dragend: function(e) {
console.log(e);
console.log(e.currentTarget.attr("src"));
e.currentTarget.css("top",e.y.location);
e.currentTarget.css("left",e.x.location);
}
});
しかし、それが良い方法であり、ドラッグロールバック効果が私の解決策を壊しているかどうかはわかりません。
KendoUI を使用してこれを行う簡単な方法 (Jquery UI をドラッグできません)。
どんな助けでも!