bigdropinc / yii2-editable-column-action
editable column action for yii2 grid view widget
Package info
github.com/bigdropinc/yii2-editable-column-action
Type:yii2-extension
pkg:composer/bigdropinc/yii2-editable-column-action
v0.1.1
2017-10-25 14:42 UTC
Requires
- kartik-v/yii2-grid: ^3.1
- yiisoft/yii2: *
This package is not auto-updated.
Last update: 2026-03-07 22:15:50 UTC
README
Editable column action for yii2 grid view widget
Installation
The preferred way to install this extension is through composer.
Either run
php composer.phar require --prefer-dist bigdropinc/yii2-editable-column-action "*"
or add
bigdropinc/yii2-editable-column-action
to the require section of your composer.json file.
Usage
For Controller::actions() method return array with EditableColumnAction::className()
class TestController extends yii\web\Controller { public function actions() { return [ 'editColumnAction' => [ 'class' => bigdropinc\EditableColumnAction::className(), 'modelClass' => MyModel::className(), 'allowedAttributes' => ['status', 'title'], ] ]; } }