Angular multiselect

Angular directive for multiselect elements with a nice UX.

Getting started

  1. Download ng-multiselect.js and ng-multiselect.css and add to your project. Or get automatically:

    bower install ng-multiselect
  2. Add the module to the app:

    angular.module('myApp', ['aurbano.multiselect'])
  3. Profit!

Usage

Add the element in the view:

<multiselect placeholder="Select users..."
             ms-model="multiselect.selected"
             ms-config="multiselect.config"
             ms-options="multiselect.options">
</multiselect>

The parameters are:

Customization

Using the ms-config you can pass an object with the following configuration options:

Demo

Dynamic data

Custom formatting

Custom template


By Alejandro U. Alvarez - MIT License