Search and Top Navigation
#2347 closed bug (wontfix)
Opened February 14, 2008 10:35AM UTC
Closed February 19, 2008 12:37PM UTC
Last modified May 24, 2008 03:39AM UTC
Sortable : callback called before sort really stop
| Reported by: | Nodashi | Owned by: | paul |
|---|---|---|---|
| Priority: | major | Milestone: | |
| Component: | ui.core | Version: | 1.2.3 |
| Keywords: | Cc: | ||
| Blocked by: | Blocking: |
Description
If you want to use a callback function when the sort stop/update this callback function is called before the sort stop.
So you have a "ghost" of the element you want to move.
In my case i sort div elements that contains hidden input.
You can use this callback function to show the problem :
fonction(e, ui){
$('div.sortable input[class="order"]').each(function(i){
alert($(this).attr('name'));
}
)
}
however if you use console.log whith firebug you will not see this "ghost" element
Attachments (0)
Change History (3)
Changed February 14, 2008 10:37AM UTC by comment:1
Changed February 19, 2008 12:37PM UTC by comment:2
| resolution: | → wontfix |
|---|---|
| status: | new → closed |
This is needed because some people want to still track changes on the helper in that callback. However, it's easy to filter out that element, because it has a helper class named 'ui-sortable-helper' assigned to it. So you could do
$('div.sortable input[class="order"]').not('.ui-sortable.helper')
Changed May 24, 2008 03:39AM UTC by comment:3
| milestone: | 1.2.4 |
|---|
Milestone 1.2.4 deleted
I forgot i use the 1.5b version of UI ;)