bigdropinc / yii2-editable-column-action
editable column action for yii2 grid view widget
Installs: 13
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 2
Forks: 0
Open Issues: 0
Type:yii2-extension
Requires
- kartik-v/yii2-grid: ^3.1
- yiisoft/yii2: *
This package is not auto-updated.
Last update: 2024-11-02 15:31:10 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'], ] ]; } }