CGridView with first column header

Is it possible to create a CGridView that has the HEADER in the first column and the recordsets as columns?

So instead of

[font="Courier New"]ID FIRST LAST


1 john doe

2 jane doe[/font]

We would have

[font="Courier New"]ID | 1 | 2

FIRST | John | Jane

LAST | Doe | Doe[/font]

Is this possible?

look at this link http://css-tricks.com/responsive-data-tables/, although it is not exactly what you want.

Have you considered [font="Courier New"]CListView [/font]in combination with some CSS trickery to put elements next to each other instead of top down ?

Ok, this is going to work perfectly for me! Thank you