Hi everyone,
I want to make a treeview with data from the Indexing Service. I have configured everything but now I got the following problem:
I get an Array with data back from the Indexing Service.
For example:
Item[0]
-Children[0]
-Children[1]
Every Child has also a child and can be 5 or 6 childs deep.
For example:
Item[0].Children[0].Children[1].Children[2].Children[3].Children[4]
Now I would like to make a treeview with
- and
-
For example:
- Item[0].Name
- Item[0].Children[0].Name
- Item[0].Children[0].Children[1].Name
- Item[0].Children[0].Children[1].Name
- Item[0].Children[1].Name
- Item[0].Children[1].Children[1].Name
- Item[0].Children[1].Children[1].Name
- Item[0].Name
- Item[1].Name
- Item[1].Children[0].Name
- Item[1].Children[0].Children[1].Name
- Item[1].Children[0].Children[1].Name
- Item[1].Children[1].Name
- Item[1].Children[1].Children[1].Name
- Item[1].Children[1].Children[1].Name
- Item[1].Children[0].Name
How can I generate this in a WebCustomControl?
Can someone help me out with this?
AndrePosted May 18, 2007, 4:22 AM
I have it working with everything I need.