jsTree 拖放按类限制文件夹

发布于 2024-12-19 10:47:36 字数 171 浏览 2 评论 0原文

如何通过类名 class="locked" 锁定文件夹上的拖动功能? 同时锁定其他要拖到该文件夹​​中的文件夹class="locked"。

我想要一个既具有拖放功能又具有上下文菜单的设置。 如果节点的类名“锁定”,我只想禁用上下文菜单的编辑以及拖入此文件夹或将此文件夹拖到新位置的可能性。

总氮

How can you lock the drag function on a folder by class name class="locked"?
And on the same time lock other folders to be draged into this folder class="locked".

I want a setup where I have both drag and drop, and contextmenu.
If the node has the class name "locked" I just want to disable editing for both contextmenu and possibility to drag into this folder or drag this folder to new location.

Tnx

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

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

发布评论

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

评论(1

み零 2024-12-26 10:47:36

通过使用 CRRM 插件结合 .get_move() 的核心文档找到了一种方法。

“.o”是正在移动的节点,“.r”是移动中的参考节点。

http://www.jstree.com/documentation/core

http://www.jstree.com/documentation/crrm

这是我的代码:

"crrm" : {
            "move" : {
                "default_position" : "first",
                "check_move" : function (m) {  
                    return (m.o.hasClass("locked") || m.r.hasClass("locked")) ? false : true;  
                }
            }
        }

Found a way by using the CRRM plugin combined with core documentation for .get_move().

".o" is the node being moved, and ".r" is the reference node in the move.

http://www.jstree.com/documentation/core

http://www.jstree.com/documentation/crrm

Here is my code:

"crrm" : {
            "move" : {
                "default_position" : "first",
                "check_move" : function (m) {  
                    return (m.o.hasClass("locked") || m.r.hasClass("locked")) ? false : true;  
                }
            }
        }
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文