An open API service indexing awesome lists of open source software.

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

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

[![Throughput Graph](https://graphs.waffle.io/miamarti/ng.multipleSelect/throughput.svg)](https://waffle.io/miamarti/ng.multipleSelect/metrics/throughput)