Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
485
Display a tree from flat data...
posted

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

 

 

Parents
No Data
Reply
  • 21382
    Verified Answer
    posted

    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.

Children