Sortable - ConnectWith (bug ? )

Sortable - ConnectWith (bug ? )


Hi all,
First of all I would like to thank you for the great work!
I have a problem with sortable connectWith, I have read this post
http://groups.google.com/group/jquery-ui-dev/browse_thread/thread/1850879252df7caa/c8e3fbc9e185135d?lnk=gst&q=sortable+connectWith#c8e3fbc9e185135d
and saw the update made but I am still not able to make it work whis
is my code.
Javascript
*********************
    <script type="text/javascript">
    $(function()
    {
        $("#sortable1, #sortable2").sortable({
            connectWith: ['.connectedSortable-level-1'],
            placeholder: 'ui-state-highlight'
        });
        $("#sortable3, #sortable4").sortable({
         //connectWith: '.connectedSortable-leve1-1, .connectedSortable-
level-2',
         connectWith: ['.connectedSortable-leve1-1', '.connectedSortable-
level-2'],
            placeholder: 'ui-state-highlight'
        });
    });
    </script>
*********************
HTML
*********************
<div class="sort-menu">
<ul id="sortable1" class="connectedSortable-level-1">
    <li class="ui-state-default"><a href="#">Item 1</a>
    <ul id="sortable3" class="connectedSortable-level-2">
    <li><a href="#">Item 11</a></li>
    <li><a href="#">Item 12</a></li>
    <li><a href="#">Item 13</a></li>
    <li><a href="#">Item 14</a></li>
    <li><a href="#">Item 15</a></li>
</ul>
    </li>
</ul>
<ul id="sortable2" class="connectedSortable-level-1">
    <li class="ui-state-default"><a href="#">Item 2</a>
    <ul id="sortable4" class="connectedSortable-level-2">
    <li><a href="#">Item 21</a></li>
    <li><a href="#">Item 22</a></li>
    <li><a href="#">Item 23</a></li>
    <li><a href="#">Item 24</a></li>
    <li><a href="#">Item 25</a></li>
</ul>
    </li>
</ul>
</div><!-- End of sort-menu -->
*********************
I am using JQuery 1.3.1 and jQuery UI 1.6rc6 (Windows XP SP3)
And I am still not able to drag level-2 to level-1.
It doesn't work on Firefox 3 and Internet Explorer 7
Did I did something wrong? As you can see I tried to use the new
syntax (if I go it right) but still doesn't work.
If anyone has a clue don't hesitate ;-)
Thanks,
Best
David