views:

32

answers:

0

I have a tree (a parent could have any number of child ) and an inputText for searching nodes by name. Assume the following tree:

A
--A1
----AA1
--A2

Where A has two children A1 and A2, A1 has one child AA1. When i type A1 in input text , i want to set nodes (A1,AA1) programmatically to select and if it is necessary expands nodes.

(i have a list<T> for building my tree)