Tree Checking

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

i have some thing like this on a tree conrol

Parent 1
Child 1 of parent 1
Child 2 of parent 1
Parent 2
Child 1 of parent 2
Child 2 of parent 2



every node has a checkbox

if i select any of the parent i want to check the childs of that parent,using javascript or by using server side

how can i do this

any help is gr 8
 
There are no inbuilt tree structures in .NET. You might want to create your own collection class by extending ICollection or some class in the System.Collections namespace

HTH
fbhca
 
Back
Top