Modify ↓
Ticket #3247 (closed bug: invalid)
Treeview sortable captures mouse when disabled
| Reported by: | ivan | Owned by: | |
|---|---|---|---|
| Priority: | minor | Milestone: | 1.3 |
| Component: | plugin | Version: | 1.2.6 |
| Keywords: | Cc: | ||
| Blocking: | Blocked by: |
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;
}
Change History
comment:2 Changed 4 years ago by dmethvin
- Status changed from new to closed
- Resolution set to invalid
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 .
Please follow the bug reporting guidlines and use jsFiddle when providing test cases and demonstrations instead of pasting the code in the ticket.
Note: See
TracTickets for help on using
tickets.

The previous snippet should be
mouseCapture: function(e){ if (this.disabled) return false; return true; }