show/hide this revision's text 2 edited body

You'll have an object called {TreeView name}_Data. All the juicy parts are in there. To get teh the selected node, you want the selectedNodeID property. For example, if you have a TreeView called Products, then try this:

var selectedItem = Products_Data.selectedNodeID.value;
var selectedNode = Document.getElementById(selectedItem);
show/hide this revision's text 1

You'll have an object called {TreeView name}_Data. All the juicy parts are in there. To get teh selected node, you want the selectedNodeID property. For example, if you have a TreeView called Products, then try this:

var selectedItem = Products_Data.selectedNodeID.value;
var selectedNode = Document.getElementById(selectedItem);