Setting the Selected Node

You can set which node in the details tree should be selected.

To set the currently selected (highlighted) node in the details tree, use:

objDetailsTree.setSelectedNode(emxUIDetailsTreeNode node, 
    boolean refresh);

To set the currently selected (highlighted) node in the structure tree, use the following code:

objStructureTree.setSelectedNode(emxUIStructureTreeNode node, 
    boolean refresh);

To refresh the page after the setSelectedNode method call, use the following command:

parent.document.location.href=node.url;