Вы должны сделать это вручную, как показано ниже:
$("#MyList").sortable({
update: function() {
var postData = $(this).sortable("serialize");
$.post("UpdateItemOrder.aspx", postData, function(theResponse) {
$("#ResultsArea").html(theResponse);
});
},
beforeStop: function(event, ui) {
// Handle new items only
if ($(ui.item).hasClass("new-item")) {
// Refresh the list
var postData = $("#MyList").sortable("serialize");
$.post("UpdateItemOrder.aspx", postData, function(theResponse) {
$("#ResultsArea").html(theResponse);
});
}
});
});