GridView 扩展推荐 yii2-round-switch-column [ 2.0 版本 ]
https://github.com/nick-denry/yii2-round-switch-column 此扩展是在 GridView 中添加一个字段的开关,非常好用。不依赖其他扩展。(搬运)
效果图:
配置:
//1,main.php 添加组件
'modules' => [
'roundSwitch' => [
'class' => 'nickdenry\grid\toggle\Module',
],
]
//2,GridView 使用
先use nickdenry\grid\toggle\components\RoundSwitchColumn;
然后:
[
'class' => RoundSwitchColumn::class,
'attribute' => 'active',
'headerOptions' => ['width' => 150],//列长
],
//3,控制器配置
Controller config
Add toggleAction to your Controller
use nickdenry\grid\toggle\actions\ToggleAction;
public function actions()
{
return [
'toggle' => [
'class' => ToggleAction::class,
'modelClass' => 'common\models\Model', // Your model class
],
];
}
注:默认类型是 0/1 可在model文件中定义此值,
//例:
/**
* @var array
*/
public $switchValues = [
'isHot' => [
'on' => 10,
'off' => 0,
],
'isRecommend' => [
'on' => 10,
'off' => 0,
],
];
小叮当的肚兜
注册时间:2016-10-31
最后登录:20小时前
在线时长:97小时45分
最后登录:20小时前
在线时长:97小时45分
- 粉丝13
- 金钱43970
- 威望270
- 积分47640
共 3 条评论
看着厉害呀
感谢 可以使用
只能使用layui模板吗