Jquery UI中的连接嵌套列表可排序

时间:2013-12-20 18:29:31

标签: jquery jquery-ui jquery-ui-sortable

小伙子们,请看看这个小提琴:http://jsfiddle.net/HG8k6/

$(document).ready(function () {
    $("ul.containers").sortable({
        axis: 'y',
        placeholder: "ui-state-highlight",
        forcePlaceholderSize: true
    });

    $("ul.containers").disableSelection();

    $("ul.rows").sortable({
        axis: 'y',
        placeholder: "ui-state-highlight",
        forcePlaceholderSize: true
    });

    $("ul.rows").disableSelection();
});

它在某种程度上工作正常,我有容器和行,我可以完美地移动它们,但我真正想要实现的是在容器之间移动行,例如将Row5从Container2移动到Container1。在此先感谢南美哥伦比亚的问候!!

1 个答案:

答案 0 :(得分:3)

使用connectWith:'.rows'更新fiddle