This question is locked. New answers and comments are not allowed.
Hi,
I have some problems for binding the List<> into my a radgridview in tabcontrol.
I have a list of person. List<List<Person>>
I have already successful binding the person information to RadGridViewPerson.
this.RadGridViewPerson.ItemsSource = personList;
In the personList, it has AddressList also. List<List<Address>>
I do not want to bind all data into all the GridView for performance issue.
Instead, I hope the Address list will populate when some event occur for example, RowDetailVisibilityChanged.
Any suggestion or idea to my situation?