I have a TreeGrid in which I have a Tree:

Tree nodesTree = new Tree();
TreeGrid navTreeGrid = new TreeGrid(); 
navTreeGrid.setData(nodesTree);

and I want everytime I'm adding a node to the tree to get focus on it.

More general, how can I from code to select a TreeNode in a Tree?

I know it is navTreeGrid.getSelectedRecord() method but is not what I want.

Thank you!

link|improve this question

feedback

1 Answer

up vote 1 down vote accepted

You can use one of the selectRecord methods.

grid.selectRecord(record);
link|improve this answer
Great! Thanks a lot Banang! – Paul Feb 10 '11 at 7:39
Glad I could help, Paul. – Banang Feb 10 '11 at 7:40
I saw that you know a lot of things related to smartgwt, therefore, with all my repect, I please you look on another issue of mine from here: stackoverflow.com/questions/4967266/tree-dragdrop-nodes-refresh Thank you so much. – Paul Feb 11 '11 at 9:17
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.