I have a list with class x and in that list is a number of lists with class y.
It is possible to drag an item from any of the sublists to any of the other sublists
You should use the stop event for updating the ordered list.
For example:
$("#List .Items").sortable({ stop: function(e, ui) { // update items } });