Included sortables. Bug with elements positions in IE7.
It must be sortable tree with saving parent/child element status. In all another browsers it works correct.
<style>
.treeChild{
margin-left:20px;
}
</style>
<div id="tree">
<ul class="parent">
<li class="treeParent">parent 1</li>
<li class="treeChild">child 1_1</li>
<li class="treeChild">child 1_2</li>
</ul>
<ul class="parent">
<li class="treeParent">parent 2</li>
<li class="treeChild">child 2_1</li>
<li class="treeChild">child 2_2</li>
</ul>
</div>
<script language="JavaScript" type="text/javascript">
$( "#tree" ).sortable
(
{
connectWith: "#tree",
items: 'ul'
}
);
$( ".parent" ).sortable
(
{
connectWith: "#tree .parent",
items: 'li:not(.treeParent)'
}
);
</script>
Change History (5)
Description: |
modified (diff)
|
Milestone: |
TBD →
1.7.2
|
Priority: |
critical →
major
|
Resolution: |
→ worksforme
|
Status: |
new →
closed
|
Thanks for taking the time to contribute to the jQuery UI project! I can no longer reproduce the issue using the latest jQuery and jQuery UI. http://jsfiddle.net/t79w6/
If you can still reproduce it, please feel free to reply to this ticket with a test case showing the problem. Thanks!