mirror of
https://github.com/yiisoft/yii2.git
synced 2025-11-03 22:32:40 +08:00
allows for configuration of the default buttons like this:
```php
[
'class' => ActionColumn::className(),
'template' => '<div class="btn-group text-center">{view} {update} {delete}</div>',
'buttonOptions' => [
'class' => 'btn btn-default btn-xs',
],
],
```
close #7633