sortable.create:选项“dropOnEmpty”无法在带有 tbody 元素的表格内工作

发布于 2024-09-24 03:09:06 字数 132 浏览 2 评论 0原文

我正在尝试在 4 个表中使用“sortable.create”来实现拖放功能。拖放功能工作得很好,但是如果某个特定的表是空的,那么即使在提供选项“dropOnEmpty:true”之后我也无法在其中放置任何内容。

我该如何解决这个问题?

I am trying to implement drag and drop functionality using "sortable.create" among 4 tables. The drag and drop functionality is working perfectly fine but is a particular table is empty then I am not able to drop anything inside it even after providing the option "dropOnEmpty: true".

How can I resolve this?

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

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

发布评论

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

评论(1

棒棒糖 2024-10-01 03:09:06

如果它与我所经历的相同,则问题是由于空元素没有任何高度。我在排序时使用 UL,但我敢打赌 TABLE 是类似的。尝试:

table.sortable {min-height:100px;}

...或适合您的格式(和类名称)的类似尺寸。您还可以让控制器在没有可对该表进行排序的情况下提供一个虚拟条目,以赋予其一定的高度。

If it's the same as what I've experienced, the problem is due to the empty element not having any height. I use ULs when sorting, but I'd bet TABLE is similar. Try:

table.sortable {min-height:100px;}

...or similar dimension that fits your formatting (and class names). You can also have your controller supply a dummy entry for when there are none to sort for that table, to give it some height.

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