kolyunya/yii2-bootstrap-checkbox-list

Yii2 Bootstrap checkbox list widget.


Keywords
bootstrap, extension, widget, checkbox, yii2, checkbox-list
License
GPL-3.0

Documentation

Yii2 Bootstrap checkbox list widget

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'
    ]
);