Opened 12 years ago
Closed 11 years ago
#7071 closed bug (fixed)
[bug in ie]: Nested sortable divs can't be dragged correctly
Reported by: | lingyulin | Owned by: | |
---|---|---|---|
Priority: | minor | Milestone: | 1.8.16 |
Component: | ui.sortable | Version: | 1.8.10 |
Keywords: | Cc: | ||
Blocked by: | Blocking: |
Description
Nested sortable divs can't be dragged correctly in ie,the parent sortable div will move when dragging children sortable divs,source as follow: <script>
$(function() {
$( "#parent" ).sortable(); $( "#parent" ).disableSelection(); $( "#child" ).sortable(); $( "#child" ).disableSelection();
}); </script>
<div id="parent"> <div id="child">
<div class="ui-state-default"><span class="ui-icon ui-icon-arrowthick-2-n-s"></span>Child Item 1</div> <div class="ui-state-default"><span class="ui-icon ui-icon-arrowthick-2-n-s"></span>Child Item 2</div> <div class="ui-state-default"><span class="ui-icon ui-icon-arrowthick-2-n-s"></span>Child Item 3</div>
</div> <div class="ui-state-default"><span class="ui-icon ui-icon-arrowthick-2-n-s"></span>Parent Item 2</div> <div class="ui-state-default"><span class="ui-icon ui-icon-arrowthick-2-n-s"></span>Parent Item 3</div> </div>
Change History (1)
comment:1 Changed 11 years ago by
Milestone: | 1.9 → 1.8.16 |
---|---|
Resolution: | → fixed |
Status: | new → closed |
Fixed with #4333.