Another user had the same issue here, but never answered.
I’m not able to get nested treeviews to expand more than one level deep when using treeview.reveal()
treeView.reveal(element);
treeView.reveal(element, { reveal: 3 });
Both have the same behavior. Treeitem is revealed and only first ancestor is expanded, despite specifying I want it to expand 3 levels deep.
Is there some special way to get this to work? I’m pretty sure all my tree items have unique identifiers.
treeView.reveal(element, { reveal: 0 });
The above doesn’t even work either. If I say I don’t want any ancestors to expand, it still expands the first parent.