Hi Jeff,
Glad you like our controls and thank you very much for your suggestion! It makes perfect sense to automatically focus node.Text after you create the node. We will think about implementing that in our next build.
As for hyper link to a tree node, you would need to use our client side JavaScript interface. You can find the detailed JavaScript interface reference in our help file, below is a brief description of how it works.
First you would need to assign each node an ID (via ItemID property) so that later you can use it to identify which node you would like to "click". You would then use some thing like this:
Code: HTML/ASPX
<a href="javascript:GoToNode('node_id');">select and expand a node</a>
Where GoToNode is a JavaScript function you put in your page:
Code: JavaScript
function GoToNode(itemId)
{
var nodes = TreeView1.searchItemById(itemId);
if (nodes.length > 0)
nodes[0].click();
}
That should get you going.
Thanks