How to set a tree item ? no example i can find in documentation,
is it use 'selectNode' and how to do it?
when first load, i want to set an item as highlighted/selected,
i tried this, not work, eheh
componentDidMount() {
setTimeout(()=>{
this.tree.selectNode({iconCls:"icon-table", text: "TABLE 2", to: "/table2"})
},2000);
}