zii.widgets.CListView (SummaryText) Yii

526 Views Asked by At

How to get rid or reposition the Summary Text completely? I don't want that to be seen at all.

Instead it should be on the top or somewhere else, because it takes a entire space as seen in the picture below:

$this->widget('zii.widgets.CListView', 
                array(
                      'dataProvider'=>$model->search(),
                      'ajaxUpdate' => true,
                      'enablePagination'=>true,
                      'summaryText'=>

                      'itemView'=>'_list',   // refers to the partial view named '_post'
                      'sortableAttributes'=>array(
                                                  'Price',
                                                  'Year',
                                                  'Lenght'
                                                  ),

                      )

                    );

I would like to have something like picture in right side. Left side is the current situation

enter image description here

1

There are 1 best solutions below

2
On

Take a look at the template option for ClistView. Here is a discussion on the feature http://www.yiiframework.com/forum/index.php/topic/24952-what-is-template-in-clistview/ With some examples.

You can also find details about the options in the official documentation http://www.yiiframework.com/doc/api/1.1/CListView#template-detail