Html Table The Yii Way?

Hi,

What is the proper way to render a html table with formatted cells ?

I need to output a table of 6 columns but CGridView and CListView seem to work by only by rows. For the moment I use the workaround to push all the datas 6 by 6 on a rawdata array that I pass to a CArrayDataProvider and then to a CGridView. I works fine but there is a performance issue because I load all the model each time. That could probably be fixed with a sql limit somewhere and wrestling a little bit with the paginator, but is there a better way?

Thanks