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.