DynaTree:如何从活动节点扩展所有子节点(下游节点级别)?

发布于 2025-01-04 16:13:05 字数 220 浏览 2 评论 0原文

我有一个 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 技术交流群。

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

发布评论

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

评论(1

脸赞 2025-01-11 16:13:05

您可以实现 onActivate 事件处理程序来递归地展开所有节点。

onActivate(node){
    if(node.getLevel() == 2){
        node.visit(function(n){
            n.expand(true);
        });
    }
}

You could implement the onActivate event handler to expand all nodes recursively.

onActivate(node){
    if(node.getLevel() == 2){
        node.visit(function(n){
            n.expand(true);
        });
    }
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文