Tbgridview Bootstrap

4247

1.png

Всем доброго времени суток)

Можно ли добавить сюда свою кнопочку?


<?php $this->widget('bootstrap.widgets.TbGridView', array(

'id'=>'email-grid',

'type'=>'striped bordered condensed',

'dataProvider'=>$model->search(),

'filter'=>$model,

'columns'=>array(

		'EMail',

array(

'class'=>'bootstrap.widgets.TbButtonColumn',

),

),

)); ?>

Можно, в виджете примерно так:




'columns' => array(

    ...

    array(

        'class' => 'bootstrap.widgets.TbButtonColumn',

        'template' => '{mybutton} {update} {delete}',

        'buttons' => array(

            'mybutton' => array(

                'label' => 'My Button',

                'url' => 'Yii::app()->createUrl("controller/action", array("id"=>"$data->id"))',

        ),

    ),

),



Спсибо!!)) :D