wbraganca/yii2-multiselect

The yii2-multiselect is a Yii 2 wrapper for [Bootstrap Multiselect](http://davidstutz.github.io/bootstrap-multiselect/).

Installs: 15 668

Dependents: 1

Suggesters: 0

Security: 0

Stars: 3

Watchers: 2

Forks: 1

Open Issues: 3

Type:yii2-extension

1.0.2 2016-10-27 11:00 UTC

This package is not auto-updated.

Last update: 2024-04-13 17:41:04 UTC


README

Latest Version Software License Total Downloads

Install

Via Composer

$ composer require "wbraganca/yii2-multiselect:~1.0.1"

or add

"wbraganca/yii2-multiselect": "~1.0.1"

to the require section of your composer.json file.

Usage

On your view file.

<?php
use wbraganca\multiselect\MultiSelectWidget;
?>

<?= MultiSelect::widget([
    'options' => [
        'multiple' => 'multiple',
    ],
    'clientOptions' => [
        'nonSelectedText' => 'Check an option!',
        'nSelectedText' => ' - Options selected!',
        'allSelectedText' => 'All',
        'selectAllText' => 'Check all!',
        'numberDisplayed' => 1,
        'enableCaseInsensitiveFiltering' => true,
        'maxHeight' => 300, // The maximum height of the dropdown. This is useful when using the plugin with plenty of options.
        'includeSelectAllOption' => true
    ],
    'data' => $cities,
    'model' => $model,
    'attribute' => 'cities',
]) ?>

For more options, visit: http://davidstutz.github.io/bootstrap-multiselect