I am using a sortable ordered list and making updates to a database based on:
- Dragging a new item to the list, calls the "receive" event to do a db insert
- Sorting the list, updates the display order in the database.
Now since the "update" and "receive" events are both part of sortable, and each is set to perform an ajax post (asynchronously), I can't control the order of these events. I need the "receive" event to fire and complete BEFORE the "update" event.
My thought was to .unbind the update event from inside the receive event and then rebind or manually call the update event, but I can't get it to work.
I am a newbie at jquery, so any help is much appreciated!!!
Thanks in advance, Chad
$("#myMovieListItems").sortable({
receive: OnReceive,
update: OnSortableUpdate,
placeholder: 'ui-state-highlight',
containment: 'document',
revert: true
});
function OnReceive(event, ui) {
//Disable the update event and manually call it on success of this event
$("#myMovieListItems").unbind("update");
//Set ID of new list element with it's original value
var newItem = $(this).data().sortable.currentItem;
newItem.attr('id', $(ui.sender).attr('id'));
//Get Data to pass to AJAX method
droppedID = newItem.attr('id');
droppedName = $.trim(newItem.first().contents().filter(function () {
return this.nodeType == 3;
}).text());
messageContainer.html(progressMessage);
source = "Facebook";
$.ajax({
type: 'POST',
url: GetSiteRoot() + 'DesktopModules/Incite/MovieRotation/Handlers/Sortable.asmx/InsertMovie',
data: '{strMovieName: \'' + droppedName + '\', intMovieListID: \'' + movieListID + '\', strSource: \'' + source + '\', strSourceID: \'' + droppedID + '\'}',
contentType: 'application/json; charset=utf-8',
dataType: 'json',
success: OnAddMovieSuccess,
error: OnSortableUpdateError
});
}