yii2 editable gridview
# https://github.com/yii2mod/yii2-editable
...
[
'class' => EditableColumn::class,
'attribute' => 'status',
'url' => ['change-username'],
'type' => 'select',
'editableOptions' => function ($model) {
return [
'source' => [1 => 'Active', 2 => 'Deleted'],
'value' => $model->status,
];
},
],
...