I am trying to display a tabular set of data in a databound control, but I need to pivot the table such that the individual records are table columns rather than table rows. The end result is a table with a fixed number of columns and a variable number of rows each displaying single field for all of the records like this. Due to the fact that the <tr /> tags would have to be defined for each field, rather than each record, a repeater isn't a suitable way to go about this. What I am wondering is if there are any built in ASP.NET controls that can achieve what I want. I was eying the ListView control, however I am not certain if it is in fact capable of what I'm describing.
Effectively, assuming records like the following:
Number Yardage Par ...
(Hole) 1 300 4 ...
(Hole) 2 275 4 ...
(Hole) 3 390 5 ...
(Hole) ... ... ... ...
I need to display:
1 2 3 ...
Yardage: 300 275 390 ...
Par: 4 4 5 ...
...: ... ... ... ...
A viable alternative to fighting with <tr /> tags would of course be to use display: inline <divs> with some graceful CSS, but if I can preserve the <table> structure that would be ideal.
Thanks!
I've recently encountered the same issue and when looking for an answer found that most solutions worked around pivotting the source data.
It occurred to me that the problem is not with the source data but the way in which we wish to render it. Although Chris's answer above does look to alter the data at point of render I found for my needs that it wouldn't be flexible enough if I needed a templated grid view. It was then it occurred that perhaps a better solution to the problem would be capture a grid's table HTML markup and alter that - this would in effect mean that the solution could be applied to absolutely any control that renders table markup, and any template controls contained within it would continue to work.
Due to time pressures I have only implemented the solution with a grid view; I originally wanted to make a template server control, that if any control was placed inside it would check it's markup output and pivot any tables contained within it)
Anyway, here's the code that's needed to implement this solution for a grid view.
Custom Server Control code
HTML Parser Service code, separated out for easy implementation elsewhere.