jQuery UI 中的可排序和可删除停用
我已将 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要在 $.droppable 'drop' 事件上添加使用 $.sortable('cancel') 方法,如下所示:
一旦发生放置,这应该取消当前的 $.sortable 事件。
You will need to add utilize the $.sortable('cancel') method on the $.droppable 'drop' event to like this:
This should cancel the current $.sortable event once a drop has occurred.