Yii v2 snippet guide

Comparing #241 with #242

Revision #242 was created by rackycz rackycz on Oct 8, 2020, 2:35:37 PM.

Modal and ajax

Content

[...]
['class' => 'yii\grid\ActionColumn',
'buttons' => [
'user_ajax_update_btn' => function ($url, $model, $key) {
return Html::a ( '<span class="glyphicon glyphicon-share"></span> ',
['user/update', 'id' => $model->id],
['class' => 'openInMyModal',
 'onclick'=>'return false;', 'data-myModalTitle' => 'Some text''] 
);
},
],
'template' => '{update} {view} {delete} {user_ajax_update_btn}'
],
[...]