views:

1487

answers:

1

How to do following - ASP.NET 2.0 TreeView and Selecting the Selected Node using JavaScript

I am trying this by reading this article,but it does not find getTreeNode() property on asp.net 2.0 treeview control.

+1  A: 

JQuery Solution - for selecting single node (highlighting) ASP.NET 2.0 Treeview Control on Client Side

$("#TreeView1t5").addClass("TreeView1_5");

Where #TreeView1t5 is id of node and TreeView1_5 is css class for selection.

Enjoy..!

bugBurger