2amigos/yii2-switchery-widget
最新稳定版本:1.0.2
Composer 安装命令:
composer require 2amigos/yii2-switchery-widget
包简介
iOS 7 style switch widget for Yii2.
README 文档
README
Yii2 wrapper for iOS 7 style switches for your checkboxes
Install
Via Composer
$ composer require 2amigos/yii2-switchery-widget
or add inside compsoer.json
"2amigos/yii2-switchery-widget": "*"
to the require section of your composer.json file.
Usage
use dosamigos\switchery\Switchery; use yii\web\JsExpression; // usage with model echo $form->field($model, 'is_required')->widget(Switchery::className(), [ 'options' => [ 'label' => false ], 'clientOptions' => [ 'color' => '#5fbeaa', ] ]); // usage without model echo Switchery::widget([ 'name' => 'is_required', 'value' => $model->is_required, 'clientOptions' => [ 'color' => '#5FBEAA', 'secondaryColor' => '#CCCCCC', 'jackColor' => '#FFFFFF', ], 'clientEvents' => [ 'change' => new JsExpression('function() { console.log("Cool! You changed my state."); }') ] ]);
Testing
$ phpunit
Contributing
Please see CONTRIBUTING for details.
Credits
License
The BSD License (BSD). Please see License File for more information.
web development has never been so fun
www.2amigos.us
统计信息
- 总下载量: 71.56k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 7
- 点击次数: 1
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: BSD-3-Clause
- 更新时间: 2017-06-23