This has me stumped. The follow code returns ",,,,,,":

<script type="text/javascript">
$(function() {
	$('#listB').sortable({
		connectWith: '#listA',
		update: function(event, ui) {
			var result = $(this).sortable('toArray');
			alert(result);
			}
	});
	$('#listA').sortable({
		connectWith: '#listB'
	});
});
</script>

<div id="boxA">
	<ul id="listA" class="myList">
		<li value="1">Item A</li>
		<li value="2">Item B</li>
		<li value="3">Item C</li>
		<li value="4">Item D</li>
		<li value="5">Item E</li>
		<li value="6">Item F</li>
		<li value="7">Item G</li>
	</ul>
</div>

<div id="boxB">
	<ul id="listB" class="myList">
		<li value="1">Item A</li>
		<li value="2">Item B</li>
		<li value="3">Item C</li>
		<li value="4">Item D</li>
		<li value="5">Item E</li>
		<li value="6">Item F</li>
		<li value="7">Item G</li>
	</ul>
</div>

Why?! It's driving me insane! Any suggestions?

link|improve this question

71% accept rate
feedback

2 Answers

up vote 11 down vote accepted

.sortable('toArray') serializes items Ids into array, and your items have no Ids, that's why you have empty strings.

link|improve this answer
feedback

I was having this issue as well except i did have id's on my elements, jQuery's sortable('toArray') was very hit an miss on return the ids, however you can grab them in javascript using this:

function getSortOrder() { var children = document.getElementById('sortedElement').childNodes; var sort = ""; for(x in children){ sort = sort + children[x].id + ","; } return sort; }

This of course returns the ID's in a comma delimited string but you can return the array. I'm sure there's a better way to solve this problem, this is just the solution i found.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.