I have setup a jsFiddle Example where I'm using jsViews with JQuery sortable. If you don't change anything, remove works correctly; but if you change the order of the items in the table, then remove any item, it deletes more then one. How do I fix this? I assume there is a way to refresh the observer after the move is done.
$("#sortableQuestionArea").sortable({
placeholder: "ui-state-highlight",
handle: ".sort-handle",
update: function(event, ui) {
// refresh code here??
}
});