Side navigation
#2256 closed bug (fixed)
Opened January 30, 2008 05:02PM UTC
Closed February 07, 2008 06:20PM UTC
Sortable options 'update' and 'stop' do not fire
Reported by: | agentrickard | Owned by: | paul |
---|---|---|---|
Priority: | major | Milestone: | 1.2.3 |
Component: | ui | Version: | 1.2.2 |
Keywords: | jquery-ui 1.0 | Cc: | |
Blocked by: | Blocking: |
Description
http://docs.jquery.com/UI/Sortables/sortable#options
As far as I can tell, the 'start', 'change' and 'sort' optional functions fire correctly. But 'update' and 'stop' do not.
The stopIt() function includes this commented out:
Let's see if the position in DOM has changed
if($(self.element).prev()[0] != that.firstSibling) {
$(self.element).triggerHandler("sortupdate", [e, that.prepareCallbackObj(self, that)], o.update);
}
More information available if needed.
When the above line is uncommented, an exception is thrown because self.pos returns null on line 91.
Commenting out line 91 allows the 'update' function to fire.
// position: { left: self.pos[0], top: self.pos[1] },
Not sure what else to do or report here.