Posted 19 Jun 2014 Link to this post
Posted 19 Jun 2014 in reply to Alyssa Link to this post
function
expandAllAncestors(node) {
if
(node.get_expanded() !==
true
)
node.expand();
(node.get_level() != 0) {
expandAllAncestors(node.get_parent());
}