md-chips-select

1.0.2 • Public • Published

Bower version npm version

The Angularjs module - Learn from Angular Material, and add a multi-select menu to md-chips. Demo in Codepen

Prerequisites:

You can install the package via npm

npm install md-chips-select

or via bower

bower install md-chips-select

Include the md-chips-select.js and md-chips-select.css in the HTML file

In HTML:

<md-chips-select ng-model="selectedItems" select-items="listItems" main-title="name"><md-chips-select>

ng-model (required): The array to store the selected items
select-items (required): The array of the items in the select list
main-title (optional): The attributes seperated by space. It will combine all value of the attributes as the title of the list item. If the main-title is not given, there must be one attibute named "title" in the select-items array

Ex: main-title = "name id" It will combine the value of the attribute "name" and "id" (See the example below)

In javascript:

Inject the modules "ngAnimate" & "md.chips.select" when you initialize the app.
Ex:

angular.module("yourApp", ['ngAnimate', 'md.chips.select']);   

Add an array for ngModel (selected) in your controller

Ex:

$scope.selectedItems = []

Add an array for select-items

Ex:

$scope.listItems = [{    
      name: "Mini Cooper",    
      id: 0     
    }, {      
      name: "Lexus IS250",      
      id: 1      
    }, {      
      name: "Ford F150",     
      id: 2   
    }, {   
      name: "Toyota Prius",   
      id: 3   
    }];

Package Sidebar

Install

npm i md-chips-select

Weekly Downloads

0

Version

1.0.2

License

MIT

Last publish

Collaborators

  • boo0330