Hello,

I'm implementing a bindinglist, with a customObject.
If I bind the bindinglist to a grid, it works perfectly, but>>>

In my customobjects, i have relations to other customObjects, the grid shows those relations as a toString.
So in the grid I see the name of the customobject of the relation.

Is there a way, to show the colums of those related custom objects.


Example:

'A person object, with a age object, that contains the age of that person
Person
- name (String)
- Age (Age)

Age
- age (String)

If I add this to a bindinglist<T>, and bind this to a grid, it shows the name of the person, and the name of the age Class, and i want the value.


Is the only way, to add a property to the person object? Or is there an other way, so the bindinglist knows that subobjects, also need to be checked, en related to columns in de grid.