jsTree 拖放按类限制文件夹
如何通过类名 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
通过使用 CRRM 插件结合 .get_move() 的核心文档找到了一种方法。
“.o”是正在移动的节点,“.r”是移动中的参考节点。
http://www.jstree.com/documentation/core
http://www.jstree.com/documentation/crrm
这是我的代码:
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: