how to get parent node in q-tree?
-
Hi , is there a method to get the parent node when I select a child node?
-
You could assign unique ids to your nod and traverse the tree on your own when a node is selected, by searching for the id and going one step up.
-
@a47ae thank you very much!