Is there any data control available (in .NET) for a complex object (object with children objects). Something like a gridview but with hiperlinks which will take you to child object.
views:
81answers:
2
A:
You can nest ListView (or gridview if that makes sense for the scenario). There is also a treeview control.
Check this question for an example of the nested listview (it uses IGrouping, but the concept is the same - just set the DataSource to the Childs Property ): http://stackoverflow.com/questions/172934/displaying-an-igrouping-with-nested-listviews
eglasius
2009-03-12 15:35:31