How Use Different Css For Listview In A Module ?

I wanna use different Styles(css) for listView widget of my theme and a module. How?

If you are using a theme then you have a css folder inside your theme folder, where you add your custom css file for listview widget. Yii will look into this file firstly.

Hi you can set the cssFile property of ListView Widget


<?php $this->widget('zii.widgets.CListView', array(

        'cssFile'=>'path/to/your/css/files',

	'dataProvider'=>$dataProvider,

	'itemView'=>'_view',

)); ?>

It works. Thank you.