vote up 2 vote down star

I have draggable list of < li > elements which I'm able to drag into another empty < ul > element. If I drag the first < li > element of the draggable original < ul > everything works fine...

Problem:

...but when I drag any other < li > element of that list the 'helper' moves away from the mouse pointer as soon as I cross the border of the recieving sortable < ul >. More precicely it moves up to the top of the list.

Has anyone seen this and knows a solution? Well, my problem is, I'm just using jquery, not really deeply into it and never really used javascript in depth either.

More info about the problem:

My jQuery code:

$(document).ready(function() {
    $('#roleList > li').draggable({
        connectToSortable: '#roleDrop',
        containment: '#container',
        revert: 'invalid'
    });                   
    $('#roleDrop').sortable({
        cursor: 'move',
        containment: '#container',
        revert: true,
        update: function() {
            var order = $('#roleDrop').sortable('serialize');
            $.ajax({
                type: 'POST',
                url: '".$postUrl."',
                dataType: 'html',
                data: order
            });
        }                          
    });
    $('#roleList').disableSelection();
});

While #roleList and #roleDrop are the aforementioned unordered lists, #container is a table.

Now a screenshot of what happens.

I start dragging the item:

When I cross the border of the second < ul > the helper jumps up.

If you need the xhtml markup too, please tell me.

flag

1  
Please post your Javascript/JQuery and relevant HTML code. If you can isolate the problem in a separate HTML file and cut and paste the whole thing, that would be ideal. – Patrick McElhaney Aug 7 at 21:41
1  
ok, I'll do that tomorrow, it's too late to think now... – tharkun Aug 7 at 22:04
jQuery and screenshots added! – tharkun Aug 11 at 22:56
1  
The XHTML markup would be helpful. – lox Aug 12 at 10:38
The containment could cause the issue. Need to see the markup, especially for that #container element. A link to a testpage would be even better. – Jörn Zaefferer Aug 12 at 17:30
show 3 more comments

1 Answer

vote up 4 vote down check

Try adding helper: 'clone' to your .draggable options:

$('#roleList > li').draggable({
    helper: 'clone',
    connectToSortable: '#roleDrop',
    containment: '#container',
    revert: 'invalid'
});

According to the jQuery documentation, you should set this option when connecting a draggable to a sortable.

While this yields a different interface experience (dragged items are cloned instead of moved), it's at least a temporary workaround for what the documentation implies is a known problem. Additional event handling could clean the original item out of #roleList during the #roleDrop update callback.

link|flag
you got the bounty because I'm on vacation :) I hope it will work. from the comments I read that it will. – tharkun Aug 19 at 10:51

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.