在 droppable 的 Drop 事件上调用 $(item).sortable('cancel') 会禁用可排序

发布于 2024-12-23 07:59:28 字数 253 浏览 2 评论 0原文

我有一些可排序的连接列表,同时也是可放置的位置。问题是,当我在 droppable 的 drop 事件中调用 sortable 的 cancel 方法时,sortable 被破坏并且不再工作。示例 http://jsfiddle.net/zSnBA/10/ 尝试将 div 编号 102 移动到第二个列表:您将看到取消事件将被调用,但可排序功能不再起作用?有什么帮助吗?

I have some sortable connected list, that are at the same time droppable places. The problem is that when I call the cancel method of sortable in the drop event of droppable, the sortable is broken and wont work any more. Example http://jsfiddle.net/zSnBA/10/ try to move the div number 102 on the second list: you will see that the cancel event will be called but the sortable wont work any more? Any help?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

聊慰 2024-12-30 07:59:28

我建议不要让可排序列表也可拖动,而是侦听可排序上的 receive 事件以取消该事件:

$('div.products-list').sortable({
    connectWith: '.products-list',
    placeholder: 'ui-state-highlight',
    items: 'div.product',
    revert: 200,
    receive: function(event, ui) {
        var prod_id = ui.item.attr("prod_id");

        /* Equal to 1 is valid because an item was just added to the list: */
        if ($(this).find(".product[prod_id='" + prod_id + "']").length > 1) {
            ui.sender.sortable("cancel");
        }
    }
});

示例: http://jsfiddle.net/z5X5y/

I would recommend not making the sortable list draggable as well, but listen to the receive event on sortable to cancel the event:

$('div.products-list').sortable({
    connectWith: '.products-list',
    placeholder: 'ui-state-highlight',
    items: 'div.product',
    revert: 200,
    receive: function(event, ui) {
        var prod_id = ui.item.attr("prod_id");

        /* Equal to 1 is valid because an item was just added to the list: */
        if ($(this).find(".product[prod_id='" + prod_id + "']").length > 1) {
            ui.sender.sortable("cancel");
        }
    }
});

Example: http://jsfiddle.net/z5X5y/

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文