Search and Top Navigation
#7071 closed bug (fixed)
Opened March 07, 2011 01:17AM UTC
Closed October 01, 2011 06:32PM UTC
[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>
Attachments (0)
Change History (1)
Changed October 01, 2011 06:32PM UTC by comment:1
milestone: | 1.9 → 1.8.16 |
---|---|
resolution: | → fixed |
status: | new → closed |
Fixed with #4333.