This is a migrated thread and some comments may be shown as answers.

Nodes Find

1 Answer 127 Views
Treeview
This is a migrated thread and some comments may be shown as answers.
Murat
Top achievements
Rank 1
Murat asked on 29 Apr 2009, 02:22 PM
hi everybody,

we want to see all sub node inclunings when we select root node
 
for example we have one head line (root node) which have 2 sub line (children nodes) and this sub lines have some info each which we can see including of sub-lines when we select separetly .how can i see all includings of sub-lines when i select root (head line) node instead of select sub-lines saperetly.




1 Answer, 1 is accepted

Sort by
0
Victor
Telerik team
answered on 30 Apr 2009, 11:59 AM
Hello Murat,

Thank you for writing. From what you wrote previously, I understand that you want to expand all nodes that are children of the selected node. Please correct me if I am wrong.

You can expand all nodes from a selected node by using the following method in RadTreeView Selected event :

private void radTreeView1_Selected(object sender, EventArgs e)  
{  
    this.radTreeView1.SelectedNode.ExpandAll();  

Please write back if you need further assistance.

Sincerely yours,
Victor
the Telerik team

Instantly find answers to your questions on the new Telerik Support Portal.
Check out the tips for optimizing your support resource searches.
Tags
Treeview
Asked by
Murat
Top achievements
Rank 1
Answers by
Victor
Telerik team
Share this question
or