I have initialised an instance of a class i have called "Relation" this class also contains a list of "Bills". When i databind this information to a grid, the Relations are showing, tho the Bills ain't. The Relation information is returning in a List and the Bills are inside.
Relation cRelation = new Relation();
List<tRelation> relationList = cRelation.getRelations();
a relation has:
relation.Bills <== List<tBills>;
How to make sure that the list inside the list is also getting showed in the Datagrid?