I would like to know what the recommended way to implement JQuery sortable and drag/and drop is. I think I could use the update event to update the model:
var options = {
placeholder: "ui-state-highlight",
update: function (event, ui) {
// update the model
} ,
$("#sortable").sortable(options);
But that would retrigger an update of the dom. And what about the special script tags Ember inserts ?
What I would like to implemented can be seen here:
Regards Roger