CListView displays data as list. It allows to display data in template instead of table as by CGridView.

 

The simple example of using CListView is

$dataProvider=new CActiveDataProvider('Post');

$this->widget('zii.widgets.CListView', array(
    'dataProvider'=>$dataProvider,
    'itemView'=>'_post',   // refers to the partial view named '_post'
    'sortableAttributes'=>array(
        'title',
        'create_time'=>'Post Time',
    ),
));

© 2012 Perochak Suffusion theme by Sayontan Sinha