vova07/yii2-select2-widget The select2 widget for Yii framework.

extensionwidgetselect2select

Yii2 select2 widget.

Latest Version Software License Build Status Coverage Status Quality Score Total Downloads

Select2 widget is a wrapper of Select2 for Yii 2 framework.

Install

The preferred way to install this extension is through composer.

Either run

php composer.phar require --prefer-dist vova07/yii2-select2-widget "*"

or add

"vova07/yii2-select2-widget": "*"

to the require section of your composer.json file.

Usage

Once the extension is installed, simply use it in your code by:

use vova07\select2\Widget;

echo $form->field($model, 'field')->widget(Widget::className(), [
    'options' => [
        'multiple' => true,
        'placeholder' => 'Choose item'
    ],
    'settings' => [
        'width' => '100%',
    ],
    'items' => [
        'item1',
        'item2',
        ...
    ],
    'events' => [
        'select2-open' => 'function (e) { log("select2:open", e); }',
        'select2-close' => new JsExpression('function (e) { log("select2:close", e); }')
        ...
    ]
]);

Testing

$ phpunit

Further Information

Please, check the Select2 documentation for further information about its configuration options.

Contributing

Please see CONTRIBUTING for details.

Credits

License

The BSD License (BSD). Please see License File for more information.

Changelog

Changelog

All Notable changes to yii2-select2-widget will be documented in this file.

0.1.2

Added

  • Code tests. (vova07)
  • Events support. (vova07)

Changed

  • Extension skeleton. (vova07)

0.1.1

  • Switch to bower package of Select2 plugin (omnilight)

0.1.0

  • Initial release (vova07)

Statistics

Downloads
GitHub Stars
GitHub Forks

Releases

Comments



1.1.1 is the latest of 4 releases



BSD-3-Clause license
Stats
8 github stars & 8 github forks
1 downloads in the last day
329 downloads in the last 30 days
85190 total downloads