Hi
I have implemented the card UI and have the drag and drop working using the example script
$(document).ready( function () { $("#list").kendoSortable({ filter: ".k-card", cursor: "move", placeholder: function (element) {return element.clone().css("opacity", 0.1);}, hint: function (element) {return element.clone().css("width", element.width()).removeClass("k-state-selected");}});});
I want to be able to save the new order if the user drags and drops and item.
Is there an event to know when a drag and drop action has occurred.
Then I can loop through a class in javascript and grab the order from the ids or a data attribute to re-order the items.
Many thanks