Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/srjn45/sp-multi-select-dropdown

Dropdown with checkbox list in material design for Angular 5
https://github.com/srjn45/sp-multi-select-dropdown

angular5 checkboxlist chips multiselect

Last synced: 21 days ago
JSON representation

Dropdown with checkbox list in material design for Angular 5

Awesome Lists containing this project

README

        

# sp-multi-select-dropdown
Dropdown with checkbox list in material design for Angular 5

## Features

- Multi Select with checkboxes
- selected items appear as chips
- removing chip deselect the item
- horizontal scroll buttons for chips

## Installation

To install this library, run:

```bash
$ npm install sp-multi-select-dropdown --save
```

and then from your Angular `AppModule`:

```typescript
import { BrowserModule } from '@angular/platform-browser';
import { NgModule } from '@angular/core';

import { AppComponent } from './app.component';

// Import SpMultiSelectDropdownModule
import { SpMultiSelectDropdownModule } from 'sp-multi-select-dropdown';

@NgModule({
declarations: [
AppComponent
],
imports: [
BrowserModule,

// Specify SpMultiSelectDropdownModule as an import
SpMultiSelectDropdownModule
],
providers: [],
bootstrap: [AppComponent]
})
export class AppModule { }
```

Once your library is imported, you can use its SpMultiSelectDropdown in your Angular application:

```xml


{{title}}

```

## License

MIT © [srjn45](mailto:[email protected])