How to customize BsGridView to show links instead of BsButtonColumn?
- by felipe.zkn
Given the code below, I need to customize the third column to show two links instead of that BsButtonColumn. I didn't find any related documentation to get the answer.
<?php
$this->widget(
'bootstrap.widgets.BsGridView',
array(
'id' => 'activity-translation-grid',
'dataProvider' => $model->search(),
'filter' => $model,
'columns' => array(
'id',
'name',
array(
'class' => 'BsButtonColumn',
),
),
)
);
?>