vote up 0 vote down star

I'm using the Sortable component of jQuery UI. The callbacks don't seem to work at all, even with this minimalistic test:

<script type="text/javascript" src="jquery-1.3.js"></script>
<script type="text/javascript" src="jquery-ui-personalized-1.6rc4.js"></script>
<script type="text/javascript">
$(document).ready(function () {
	$("#outer").sortable({
		start: function (e, ui) {
			alert("started");
		},
		update: function (e, ui) {
			alert("updated");
		}
	});
});
</script>
<ul id="outer">
<li>apple</li>
<li>orange</li>
</ul>

I get none of the alerts when I reorder these elements.

Is my usage correct or am I perhaps misreading the documentation?

start Function(Event, ui)

Function that gets called when sorting starts.

flag

What does firebug (or your preferred javascript debugger) say? I got it working with jQuery 1.3 and the current jQuery UI (personalized: core, draggable, sortable), version 1.6rc5. – Tomalak Jan 21 at 19:08
I'm on Firefox and I get absolutely no errors/warnings. It's just dead silent. However, sorting works as expected. It's just the callbacks that don't seem to work. I'm trying to avoid digging into jQuery UI code :( – Ates Goral Jan 21 at 19:14

2 Answers

vote up 1 vote down check

It seems that the .sortable() is having some technical difficulties according to this post. You may need to use SVN to download the latest trunk release to fix it.

link|flag
I just checked out the latest from SVN and it works. Thanks! – Ates Goral Jan 21 at 19:34
vote up 0 vote down

I was able to work around this problem by including two versions of jquery simultaneously. Check it out here: http://gist.github.com/59757

Hope it helps!

link|flag

Your Answer

Get an OpenID
or

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