lawiet/yii2-multiselect

The yii2-multiselect is a Yii 2 wrapper for [Multiselect](http://loudev.com/).

Installs: 229

Dependents: 0

Suggesters: 0

Security: 0

Stars: 1

Watchers: 2

Forks: 0

Language:JavaScript

Type:yii2-extension

dev-master 2017-12-15 01:43 UTC

This package is auto-updated.

Last update: 2024-04-29 03:34:45 UTC


README

Latest Version Software License Total Downloads

Install

Via Composer

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

or add

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

to the require section of your composer.json file.

Usage

On your view file.

<?php
use lawiet\multiselect\MultiSelectBoxWidget;
?>

<?= MultiSelectBox::widget([
    'options' => [
        'multiple' => 'multiple',
    ],
    'data' => $cities,
    'model' => $model,
    'attribute' => 'cities',
]) ?>

For more options, visit: http://loudev.com/