Revision #242 has been created by rackycz on Oct 8, 2020, 2:35:37 PM with the memo:
Modal and ajax
« previous (#241) next (#243) »
Changes
Title
unchanged
Yii v2 snippet guide
Category
unchanged
Tutorials
Yii version
unchanged
2.0
Tags
unchanged
tutorial,beginner,yii2
Content
changed
[...]
['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}'
],[...]