vote up 1 vote down star
1

When I try to use a sortable event . (For instance the stop() event) It only works when I bind it using :

$('.selector').bind('sortstop', function(event, ui) { ... });

rather than

$('.selector').sortable({ stop: function(event, ui) { ... } });

Is there a missing piece in this?

The only reason I ask is because when I bind using the actual bind() method it's not giving me access to the event or ui parameters I pass in. I'm always returned undefined.

flag

1 Answer

vote up 0 vote down

Hrm, if the parameters to your function are undefined values then that sounds like a bug. To answer your specific question, your second line ($('.selector').sortable({ stop: function(event, ui) { ... } });) will have no effect after the first, initializing call to sortable(). To change options after that initializing call, you call the option method:

$('.selector').sortable('option', 'stop', function(event, ui) { /* ... */ });
link|flag

Your Answer

Get an OpenID
or

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