Side navigation
#3247 closed bug (invalid)
Opened August 12, 2008 06:24PM UTC
Closed October 12, 2009 11:55PM UTC
Treeview sortable captures mouse when disabled
| Reported by: | ivan | Owned by: | |
|---|---|---|---|
| Priority: | minor | Milestone: | 1.3 |
| Component: | plugin | Version: | 1.2.6 |
| Keywords: | Cc: | ||
| Blocked by: | Blocking: |
Description
The sortableTree widget prevents interaction with the list contents even when it is disabled. I guess it should have a mouseCapture method that returns false when it is not active:
mouseCapture: function(e){
if (this.disabled) return false;
}
Attachments (0)
Change History (2)
Changed August 26, 2008 04:06PM UTC by comment:1
Changed October 12, 2009 11:55PM UTC by comment:2
| resolution: | → invalid |
|---|---|
| status: | new → closed |
This is not a jQuery core bug. Please report plugin bugs to the plugin's author, or ask on the jQuery forums. jQuery UI bugs should be reported on the UI bug tracker, http://dev.jqueryui.com .
The previous snippet should be
mouseCapture: function(e){ if (this.disabled) return false; return true; }