DynaTree:如何从活动节点扩展所有子节点(下游节点级别)?
我有一个 4 级树,并且希望在激活 2 级节点时展开其所有子级(以及子级的子级)。我可以通过以下方式确定当前的激活节点级别:
if(node.getLevel() == 2)...
我想:
if(node.getLevel() == 2) node.expand(true)
但这不起作用。
I've got a 4 level tree and would like to expand all of its children (and children's children) when a level 2 node is activated. I can determine the current activate node level with:
if(node.getLevel() == 2)...
I thought something like:
if(node.getLevel() == 2) node.expand(true)
But that doesn't work.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以实现 onActivate 事件处理程序来递归地展开所有节点。
You could implement the
onActivate
event handler to expand all nodes recursively.