After trying to get help at IRC #jquery-ui i got the following 2
possible soloutions:
var order = ""; $(".connectedSortable").each(function(){ order += $
(this).sortable("serialize") + "&"; });
(works, but only create one array)
var order={}; $("..").each(function(){ order[this.id]=$(this).sortable
("serialize"); })
(cant seem to get it working)
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"jQuery UI" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/jquery-ui?hl=en
-~----------~----~----~----~------~----~------~--~---