在 droppable 的 Drop 事件上调用 $(item).sortable('cancel') 会禁用可排序
我有一些可排序的连接列表,同时也是可放置的位置。问题是,当我在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我建议不要让可排序列表也可拖动,而是侦听可排序上的
receive
事件以取消该事件:示例: 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:Example: http://jsfiddle.net/z5X5y/