Theming the Grid

I’ve created a theme for our website. I’m thinking of creating another CSS stylesheet for the grid as well, and have it incorporated with the theme. Is this possible? If it is, how does one do it?

Look at the gridview api documentation. There is a property to set grid-specific css stylesheet but the name escapes me at the moment.

Yes, you can create or customize CSS file (from framework/zii/widgets/assets/gridview/styles.css) and set your CGridView like:




$this->widget('zii.widgets.grid.CGridView', array(

  ... (the other properties)

  'cssFile'=>'(Put your new css file location here)',		

));