#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: | ||
Blocked by: | Blocking: |
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 (1)
Change History (4)
Changed 15 years ago by
Attachment: | Sortables_NestedError.html added |
---|
comment:2 Changed 15 years ago by
Resolution: | → invalid |
---|---|
Status: | new → closed |
Please repost this to the UI Bug Tracker.
demonstrates that resizable elements stop a sortable from working