2010-07-13 8 views

Répondre

2

Une solution serait de mettre votre fonction stop à ceci:

stop: function(e,ui) { 
    var allItems = $(this).sortable("toArray"); 
    var newSortValue = allItems.indexOf($(ui.item).attr("id")); 
    alert($(ui.item).attr("id") + " was moved to index " + newSortValue); 
}