'class' => 'yii\grid\ActionColumn',
'template' => '{view} {update} {delete} {link}',
'buttons' => [
'delete' => function ($url,$model) {
return Html::a(
'<span class="glyphicon glyphicon-tree-deciduous"></span>',
$url);
},
'link' => function ($url,$model,$key) {
return Html::a('delitem', $url);
},
],
'template' => '{view} {update} {delete} {add_sector}',
'buttons' => [
'add_sector' => function($name, $model, $key){
return Html::a('<i class="fa fa-plus" aria-hidden="true"></i>',
['sector/create'],
[
'style' => 'color: green',
'title' => 'Title button',
'data' => [
'method' => 'post',
'params' => '{"id_s": ' . $model->id .', "id_c": ' .$model->arrea->id . '}'
]
]
);
}
]
[
'class' => 'yii\grid\ActionColumn',
'template' => '{view} {update} {delete} {link}',
'buttons' => [
'delete' => function ($url,$model) {
return Html::a(
'<span class="glyphicon glyphicon-alert"></span>',
['vacancies/delitem']);
},
],
],