ASP.NET: Get node selected on an ASP.NET TreeView by Client Side JavaScript - Stack Overflow most recent 30 from stackoverflow.com2009-12-06T09:49:18Zhttp://stackoverflow.com/feeds/question/897100http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/897100/asp-net-get-node-selected-on-an-asp-net-treeview-by-client-side-javascript0ASP.NET: Get node selected on an ASP.NET TreeView by Client Side JavaScriptVansFannel2009-05-22T09:40:38Z2009-07-16T07:00:02Z
<p>Hello!</p>
<p>I need to know the selected node's depth from a ASP.NET Treeview on client side.</p>
<p>Is there anyway to know this?</p>
<p>Thank you!</p>
http://stackoverflow.com/questions/897100/asp-net-get-node-selected-on-an-asp-net-treeview-by-client-side-javascript/905174#9051741Answer by scrotehead for ASP.NET: Get node selected on an ASP.NET TreeView by Client Side JavaScriptscrotehead2009-05-25T02:58:16Z2009-05-25T02:58:16Z<p>Not that I like doing it this way and if time permits I'll try and find another method;</p>
<pre><code> var id = TreeView2_Data.selectedNodeID.value; //Get the Selectednode id of tv with asp.net id of TreeView2
if (id.length > 0) {
var selectedNode = document.getElementById(id); //Get the Selectnode object -> selectedNode.innerText will give you the text of the node
if ((typeof (selectedNode) != "undefined") && (selectedNode != null)) {
//Determine the depth of the select node
var nodeDepth = selectedNode.host.split('\\\\').length // the separator is the default single \. Tv adds the extra on and of course we have to add 2 for the string literals.
//node depth wil always be one more than the real node depth, so root is one.
if (nodeDepth >= 4) {
//Do stuff or return value
}
}
}
</code></pre>
<p>Hope it helps. Post back if you find an alternative.</p>