yii2mod/yii2-toggle-column
最新稳定版本:1.1
Composer 安装命令:
composer require yii2mod/yii2-toggle-column
包简介
Provides a toggle data column and action
README 文档
README
Toggle Column Widget for Yii 2
Provides a toggle data column and action for Yii Framework 2.0
Installation
The preferred way to install this extension is through composer.
Either run
php composer.phar require --prefer-dist yii2mod/yii2-toggle-column "*"
or add
"yii2mod/yii2-toggle-column": "*"
to the require section of your composer.json file.
Usage
- In your GridView columns section:
[
'class' => '\yii2mod\toggle\ToggleColumn',
'attribute' => 'active',
],
- Add
toggle actionto your controller as follows:
public function actions() { return [ 'toggle' => [ 'class' => \yii2mod\toggle\actions\ToggleAction::class, 'modelClass' => 'path\to\your\Model', // if you want to use flash messages 'setFlash' => true, 'flashSuccess' => 'Success message', 'flashError' => 'Error message', 'redirect' => 'some-redirect-url', // if you want to use custom code before saving the model 'preProcess' => function() { // your custom code } ], ]; }
统计信息
- 总下载量: 7.93k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 5
- 点击次数: 0
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2014-12-04