kak / input-switch
bootstrap switch for Yii2
dev-master
2015-12-14 16:09 UTC
Requires
- bower-asset/bootstrap-switch: >=3.3.2
- yiisoft/yii2: *
This package is auto-updated.
Last update: 2024-10-22 04:55:50 UTC
README
bootstrap-switch widget for Yii2
Documentation
- @docs options http://www.bootstrap-switch.org/options.html
- @docs methods http://www.bootstrap-switch.org/methods.html
- @docs events http://www.bootstrap-switch.org/events.html
Installation
The preferred way to install this extension is through composer.
Either run
php composer.phar require --prefer-dist kak/input-switch "dev-master"
or add
"kak/input-switch": "dev-master"
to the require section of your composer.json
file.
Usage
ActiveForm
echo $form->field($model, 'list')->widget('\kak\widgets\InputSwitch\InputSwitch', [ 'options' => [ 'data-id' => $model->id, 'data-size' => 'small' ], ]) ?>
Native
echo \kak\widgets\InputSwitch\InputSwitch::widget([ 'name' => 'OperatorSwitch[' . $model->id . ']', 'value' => $model->status == true, 'options' => [ 'data-id' => $model->id, 'data-size' => 'small' ] ]);
Use Events
$js =<<<JS $('.InputSwitch').on('switchChange.bootstrapSwitch', function(event, state) { $.post('/finance/credit-operator-switch',{status: state, id: $(this).data('id') }) }); JS; $this->registerJs($js) ?>