yii2-extension yii2-bootstrap-checkbox-list
Yii2 Bootstrap checkbox list widget.
kolyunya/yii2-bootstrap-checkbox-list
Yii2 Bootstrap checkbox list widget.
- PHP
- 0 Dependents
- 0 Suggesters
- 0 Forks
- 0 Open issues
- 1 Versions
- 0 % Grown
Usage example
echo $form->field($model, 'list')->widget(
'kolyunya\yii2\widgets\bootstrap\CheckboxList',
[
'items' =>
[
'value-1' => 'label-1',
'value-2' => 'label-2',
'value-3' => 'label-3'
],
'type' => 'primary',
'size' => 'default'
]
);