brussens/yii2-bootstrap-select

Bootstrap select widget for Yii2

Installs: 22 195

Dependents: 0

Suggesters: 0

Security: 0

Stars: 8

Watchers: 2

Forks: 7

Open Issues: 0

Type:yii2-extension

1.0.0 2015-10-31 22:01 UTC

This package is auto-updated.

Last update: 2024-04-15 00:55:15 UTC


README

#Bootstrap select widget for Yii2

##Install Either run

php composer.phar require --prefer-dist brussens/yii2-bootstrap-select "*"

or add

"brussens/yii2-bootstrap-select": "*"

to the require section of your composer.json file.

##Options

##Usage

use brussens\bootstrap\select\Widget as Select;
echo $form->field($model, 'subject')->widget(Select::className(), [
                            'options' => ['data-live-search' => 'true'],
                            'items' => [
                                '1' => 'Item 1',
                                '2' => 'Item 2',
                                '3' => 'Item 3',
                                '4' => 'Item 4',
                                '5' => 'Item 5',
                            ]
                        ]);

##Profit