jQuery UI 中的可排序和可删除停用

发布于 2024-12-08 00:56:09 字数 274 浏览 1 评论 0原文

我已将 jQuery UI 可排序和可拖放附加到我的页面上的几个不同页面。

我希望在用户拖动另一个活动列后,被删除的元素不会出现在距离“可放置”列最近的列中。

http://jsfiddle.net/jordanbaucke/W3yyk/4/

我尝试禁用最接近的“可排序”列并在“可放置”处于活动状态时重新激活,但这不起作用。我该如何修复它?

I have attached jQuery UI sortable and droppable to a few different pages on my page.

I want to have the elements that are dropped, not end up in the closest column to the 'droppable' column after the user has dragged across another active column.

http://jsfiddle.net/jordanbaucke/W3yyk/4/

I have tried to disable the closest 'sortable' column and reactivate when 'droppable' is active, but this doesn't work. How can I fix it?

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

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

发布评论

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

评论(1

囚你心 2024-12-15 00:56:09

您需要在 $.droppable 'drop' 事件上添加使用 $.sortable('cancel') 方法,如下所示:

$('#droppablecolumn').droppable({
    over: function(en, ui) {
        $(this).css('background-color', 'grey');
    },

    out: function(en, ui) {
        $(this).css('background-color', 'white');
    },

    drop: function(){
        $('.column').sortable('cancel');    
    }    
});

一旦发生放置,这应该取消当前的 $.sortable 事件。

You will need to add utilize the $.sortable('cancel') method on the $.droppable 'drop' event to like this:

$('#droppablecolumn').droppable({
    over: function(en, ui) {
        $(this).css('background-color', 'grey');
    },

    out: function(en, ui) {
        $(this).css('background-color', 'white');
    },

    drop: function(){
        $('.column').sortable('cancel');    
    }    
});

This should cancel the current $.sortable event once a drop has occurred.

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