组合 jQuery Portlet

发布于 2024-12-14 01:25:39 字数 220 浏览 0 评论 0原文

当我发布这个时,听起来可能很奇怪,我如何结合 jQuery UI Portlet

当前当用户在列之间拖动小部件,它会被排序,我所看到的是当用户将一个小部件拖动到另一个小部件的中心时,这两个小部件应该合并。知道这很奇怪,但是希望有人指导我应该从哪里开始? 提前致谢

it might sound weird when I post this, How do i combine jQuery UI Portlet

Currently when the user drags widgets between columns, it gets sorted, What I am looking at is when the user drags a widget to the center of another widget, these 2 widgets should get combined. Know this is pretty weird, but looking at someone to guide as to where I should be starting at ??
Thanks in advance

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

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

发布评论

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

评论(1

浅沫记忆 2024-12-21 01:25:39

使用公差来检查 div 是否在已删除的 div 内

$( ".column" ).droppable({
        activeClass: "ui-state-hover",
        hoverClass: "ui-state-active",
        tolerance: 'fit',
        drop: function(event, ui) {
        }
    });

use tolerance to check whether the div is within dropped div or not

$( ".column" ).droppable({
        activeClass: "ui-state-hover",
        hoverClass: "ui-state-active",
        tolerance: 'fit',
        drop: function(event, ui) {
        }
    });
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文