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.

link|improve this question
feedback

1 Answer

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);
        });
    }
}
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.