Normally (and naturally), each entry in a list is presented in a row in the grid control, but there're cases when I need to show each entry in a vertical format, i.e. in a column.
For example, for a simple grid like:
- Name Email Age Address
- John j@a.com 30 John's address
- Joe j@b.com 30 Joe's address
- Tom t@c.com 30 Tom's address
Is it possible to show it in Infragistics wingrid as:
- Name John Joe Tom
- Email J@a.com j@b.com t@c.com
- Age 30 30 30
- Address John's adddress Joe's address Tom's address
One reason of doing this is because there're too many fields for each entry and the user thinks it would be easier to navigate if they're all in the same column instead of the same row.
I know I can manually transform the original data source and build another business object in the vertical format, but it feels awkward because the new BO doesn't really present the nature of what it really means.
Any help is very much appreciated..Thanks.