AGREGAR UN INDICE EN LA COLUMNA

Hola,

Necesito agregar una columna indice al widget bootstrap.widgets.TbGridView, me refiero a los siguiente:

Columna autoincremental (Indice):

        Indice | NOMBRE | APELLIDO | EDAD


          1    | JUAN   |    PEREZ |   22


          2    |   XXXX |    XXX   |   XX


          3   ........................


 (Total)  5   

Espero se entienda.

Gracias

Buenas.




        'columns' => array(

            array(

                'header' => 'Row',

                'value' => '$row + ($this->grid->dataProvider->pagination->currentPage

                    * $this->grid->dataProvider->pagination->pageSize)',



Un saludo.