允许将可排序的项目放入垃圾箱,但不进行排序

发布于 2024-12-15 12:08:01 字数 207 浏览 0 评论 0原文

我希望在管理员面板中显示我网站上的新闻列表。我希望能够将项目放入垃圾桶,但无法对列表进行排序。 我的问题是如何允许它被拖到垃圾桶并不允许它在项目所在的列表中排序。可以将其拖放到列表中,但所有项目都需要具有与以前相同的位置。

这是一个示例

I want to have a list of news on my site, in the administrator panel. I want to be able to drop items in a trashcan, but not be able to sort the list.
My problem is how to allow it to be dragged to the trashcan and disallow it to be sorted in the list the item is located. It can be dropped in the list, but all items needs to have the same location as before.

This is an example

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

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

发布评论

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

评论(2

暖伴 2024-12-22 12:08:01

如果你想要制作不可排序的东西,为什么要使用可排序而不是可拖动?尝试使其仅与可拖动和 -handle- revert 一起工作。

像这样的东西有效:

$("#sortable1 li, #sortable2 li").draggable({
   revert: true
});

$("#trash").droppable({
  accept: ".connectedSortable li",
  hoverClass: "ui-state-hover",
  drop: function(ev, ui) {
     ui.draggable.remove();
  }
});

Why do you use sortable, and not draggable if you're trying to make something that isn't sortable? Try to make it work with only draggable and a -handle- revert.

Something like this works:

$("#sortable1 li, #sortable2 li").draggable({
   revert: true
});

$("#trash").droppable({
  accept: ".connectedSortable li",
  hoverClass: "ui-state-hover",
  drop: function(ev, ui) {
     ui.draggable.remove();
  }
});
像你 2024-12-22 12:08:01

可排序不是必需的。您唯一需要的是 - 可拖动和可放置。抱歉,但我没有时间修复你的示例。

Sortable is not necessary. The only you need - draggable and droppable. Sorry, but I have not time to fix your example.

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