RadTreeView for ASP.NET

Getting the Client-Side Instance of Telerik RadTreeView Send comments on this topic.
See Also
Example scenarios (How to) > Client -side > Getting the Client-Side Instance of Telerik RadTreeView

Glossary Item Box

This article shows how to get an instance of Telerik RadTreeView on the client-side and how to operate with it:

  Copy Code
<script language="javascript" type="text/javascript">
...
   
//Define the treeview server ID as RadTreeView1:
   
var treeViewInstance = <%=RadTreeView1.ClientID %>;

   
//After you got the client-side instance of the treeview, you can operate with it as follows:
   
var selectedNode = treeViewInstance.SelectedNode;
...
</script>

See Also