Ticket #7071 (closed bug: fixed)

Opened 2 years ago

Last modified 20 months ago

[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:
Blocking: Blocked by:

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

comment:1 Changed 20 months ago by scott.gonzalez

  • Status changed from new to closed
  • Resolution set to fixed
  • Milestone changed from 1.9 to 1.8.16

Fixed with #4333.

Note: See TracTickets for help on using tickets.