Ticket #3207 (closed bug: invalid)
Sortables do not work on sorted elements that are also resizable
| Reported by: | mlang74 | Owned by: | |
|---|---|---|---|
| Priority: | critical | Milestone: | 1.3 |
| Component: | core | Version: | 1.2.6 |
| Keywords: | Cc: | ||
| Blocking: | Blocked by: |
Description
A sortable element that also has the resizable capability applied will not sort. I have created a sample file with sortables where the child elements being sorted are resizable. If I disable the line of code with resizing the sortable works. If I enable the resizable call resizing works, but the item will not sort.
The problem occurs if the resizable call is before or after the sortable call.
$(document).ready(function(){
$('.contentArea').resizable({resize:draggableResize, stop:draggableResizeComplete});
$('.contentGroup').sortable({items:'.contentArea', handle:'.moveButton', connectWith:'.contentGroup', opacity:'.5'});
});
Attachments
Change History
Changed 5 years ago by mlang74
-
attachment
Sortables_NestedError.html
added
comment:2 Changed 5 years ago by flesler
- Status changed from new to closed
- Resolution set to invalid
Please repost this to the UI Bug Tracker.
Please follow the bug reporting guidlines and use jsFiddle when providing test cases and demonstrations instead of pasting the code in the ticket.

demonstrates that resizable elements stop a sortable from working