bigdropinc/yii2-editable-column-action

editable column action for yii2 grid view widget

v0.1.1 2017-10-25 14:42 UTC

This package is not auto-updated.

Last update: 2024-04-06 13:02:28 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'],
            ]
        ];
    }
}