Geo99M6Z
(Gwolanin)
January 25, 2015, 8:04pm
1
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?
oligalma
(Marc Oliveras)
January 26, 2015, 9:16am
2
look at this link http://css-tricks.com/responsive-data-tables/ , although it is not exactly what you want.
tomvdp
(Tomvdp)
January 27, 2015, 10:17am
3
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 ?
Geo99M6Z
(Gwolanin)
January 28, 2015, 10:12pm
4
Ok, this is going to work perfectly for me! Thank you