Hello,
Maybe it is possible natively, but i haven't found it how, but how could i selected a node programmatically?
I'am working with VueJS.
Here is my use case:
I have the tree view component on the left part of my app and when i click on a node (Node1) it expands its children (Node1.1, Node1.2, Node1.3,...)
Then on the right part of my app i have the content page component which will sometimes display the list of the children too (Node1.1, Node1.2, Node1.3,...)
What i would like is when in the content page i click on let's say Node1.2 , that in the tree view the node Node1.2 would be selected, and so the expension of its children would be triggered
Thanks for your help.
JM