Hi,
I've 4 sortable and want to connect all together such a way that elements from any of the sortable can be drag & dropped to any of the other 3 Sortables.
With JQuery UI Sortable this approach can be done (pls refer to this example: http://jsbin.com/aMIxUHi/1/edit).
However in Kendo UI Sortable when I try the following, it doesn't work:
$("#rightbar").kendoSortable({
filter: ">div",
cursor: "move",
connectWith: ["#leftbar", "#centrebar"],
placeholder: placeholder,
hint: hint
});
$("#leftbar").kendoSortable({
filter: ">div",
cursor: "move",
connectWith: ["#rightbar", "#centrebar"],
placeholder: placeholder,
hint: hint
});
$("#centrebar").kendoSortable({
filter: ">div",
cursor: "move",
connectWith: ["#leftbar", "#rightbar"],
placeholder: placeholder,
hint: hint
});
Please advise, If this approach is possible and supported in Kendo UI Sortable. If yes, please kindly provide a working example.
Thank you.
I've 4 sortable and want to connect all together such a way that elements from any of the sortable can be drag & dropped to any of the other 3 Sortables.
With JQuery UI Sortable this approach can be done (pls refer to this example: http://jsbin.com/aMIxUHi/1/edit).
However in Kendo UI Sortable when I try the following, it doesn't work:
$("#rightbar").kendoSortable({
filter: ">div",
cursor: "move",
connectWith: ["#leftbar", "#centrebar"],
placeholder: placeholder,
hint: hint
});
$("#leftbar").kendoSortable({
filter: ">div",
cursor: "move",
connectWith: ["#rightbar", "#centrebar"],
placeholder: placeholder,
hint: hint
});
$("#centrebar").kendoSortable({
filter: ">div",
cursor: "move",
connectWith: ["#leftbar", "#rightbar"],
placeholder: placeholder,
hint: hint
});
Please advise, If this approach is possible and supported in Kendo UI Sortable. If yes, please kindly provide a working example.
Thank you.