I\'m using jQuery and Sortable to arrange my list of items (and this http://dragsort.codeplex.com).
All works perfect.
I\'m using a function on dragEnd
While this solution works great to create an initial transition, when the item snaps back, there is no transition. The solution is easier than I ever expected. All you need to do is adjust the revert option in .sortable()
Like this:
jQuery UI API: http://api.jqueryui.com/sortable/#option-revert
This makes a nice and smooth transition to the item's new home.
Click here for EXAMPLE on jsFiddle