Cgridview counter column

4 0
8
Viewed: 13 642 times
Version: Unknown (update)
Category: Tips
Written by: Nisanth thulasi Nisanth thulasi
Updated by: trond trond
Created: Jul 26, 2013
Updated: 13 years ago

This wiki article has not been tagged with a corresponding Yii version yet.
Help us improve the wiki by updating the version information.

some times we want to show the serialNo on cgridview .

$this->widget('zii.widgets.grid.CGridView', array(
  
    'dataProvider'=>$model->search(),
    'filter'=>$model,
    'columns'=>array(
        array(
            'header'=>'Sr #',
            'value'=>'$this->grid->dataProvider->pagination->currentPage * $this->grid->dataProvider->pagination->pageSize + ($row+1)',
        ),
       ............
));