jsTree 开一个分支
我正在使用 JQuery 插件 jsTree, http://www.jstree.com/ 我可以使用以下方法扩展整个树:
$("#tree").jstree("open_all");
以及特定的节点:
$("#tree").jstree("open_node", $('#childNode'));
我很难打开树的分支,打开分支可以很好地打开它,但如果有的话,则不会打开其父级。
有人用 jsTree 成功做到了这一点吗?如果您需要更多信息,请告诉我。
谢谢埃夫
I am using the JQuery plugin jsTree, http://www.jstree.com/
I am able to expand the whole tree with the following method:
$("#tree").jstree("open_all");
and also a specific node:
$("#tree").jstree("open_node", $('#childNode'));
I am having difficulty opening a branch of the tree, open branch opens it fine but does not open its parent if it has one.
Has anyone successully done this with jsTree? Let me know if you need more info.
Thanks
Eef
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(8)
您的开放分支代码是正确的。
例如。树的来源:
开放节点:
Your code for open branch is correct.
For example. Source of tree:
Open node:
尝试使用此代码打开节点直到第 n 层
Try this code to open node till nth Level
您可以使用绑定
You could use the binding
这是可以打开特定节点及其所有父节点的函数。
Here is function that can open a specific node and all its parents.
我发现 Ted 的代码可以工作,但必须对其进行一些更改:
i found Ted's code working, but had to change it a bit:
如果你使用 json 就使用这个
just use this if you use json
以前的代码都不适合我,所以我创建了这段代码,它的作用就像一个魅力:)
None of previous worked for me, so I have created this code, and it works like a charm :)