kolyunya/yii2-bootstrap-checkbox-list

Yii2 Bootstrap checkbox list widget.

dev-master 2014-11-14 15:05 UTC

This package is auto-updated.

Last update: 2024-04-10 22:24:17 UTC


README

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