I have a collection of objects that I want to display hierarchically... however, the source data isn't a hierarchical collection. It is a flat collection of objects, each with a reference to another object which has a property for the grouping.
An example would be a list of Cars where Car.Make.Name would be the group I want it to display in.
Is this possible? An example would be nice? Or, do I have to use a Grid control and make it look like a list/tree?
BOb
OK, I figured I could do something like that. I was hoping I didn't have to. Thanks.
The tree isn't going to be able to show your data in a group without a little bit of manipulation.
You would need to format your data a little in order to make a series of collections to show the data relationship.