https://github.com/miamarti/ng.multipleselect
Materialize Css multiple select
https://github.com/miamarti/ng.multipleselect
angularjs angularjs-directives material-design materializecss select select-multiple
Last synced: 16 days ago
JSON representation
Materialize Css multiple select
- Host: GitHub
- URL: https://github.com/miamarti/ng.multipleselect
- Owner: miamarti
- License: apache-2.0
- Created: 2017-04-06T21:15:05.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2017-06-08T18:46:23.000Z (almost 8 years ago)
- Last Synced: 2025-05-08T19:15:22.746Z (16 days ago)
- Topics: angularjs, angularjs-directives, material-design, materializecss, select, select-multiple
- Homepage: https://miamarti.github.io/ng.multipleSelect/
- Size: 1.91 MB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# ng.multipleSelect
Materialize Css multiple select
## Bower install de dependency
```
$ bower install ng.multipleSelect --save
```## Module AngularJS include
```
angular.module('example', ["ngMultipleSelect"]);
```## Implementation
Inside the HTML view:
``````
Inside the Controller:
```
angular.module('example').controller('ExampleController', function () {this.options = [
{value: '1', label: 'Obi-Wan Kenobi', checked: false},
{value: '2', label: 'Qui-Gon Jinn', checked: false},
{value: '3', label: 'Plo Koon', checked: false},
{value: '4', label: 'Yoda', checked: false}
];
this.notActive = false;
});
```## Parameters
| Name | Type | Dinamic | Mandatory | Description |
| ------------ | ------- | ------- | --------- | ------------------------------------------------------------ |
| ng-model | Array | true | true | Scope of the attribute that will be the model |
| ng-disabled | Boolean | true | false | Set multipleSelect to readOnly |## Metrics
[](https://waffle.io/miamarti/ng.multipleSelect/metrics/throughput)