s4studio / yii2-switchery-widget
iOS 7 style switch widget for Yii2.
Installs: 6
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 0
Forks: 2
Open Issues: 0
Type:yii2-extension
pkg:composer/s4studio/yii2-switchery-widget
Requires
- bower-asset/switchery: 0.8.2
- yiisoft/yii2: ^2.0
README
Yii2 wrapper for iOS 7 style switches for your checkboxes
Install
Via Composer
$ composer require s4studio/yii2-switchery-widget
or add inside compsoer.json
"s4studio/yii2-switchery-widget": "*"
to the require section of your composer.json file
and add:
"repositories": [ { "type": "package", "package": { "name": "bower-asset/switchery", "version": "0.8.2", "type": "bower-asset", "dist": { "type": "zip", "url": "https://github.com/abpetkov/switchery/archive/refs/tags/0.8.2.zip" } } } ]
Usage
use s4studio\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 s4studio.pl