New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

ngx-select-multiple

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ngx-select-multiple

`ngx-select-multiple` A angular(6+) search and multi-select dropdown component for angular

  • 0.0.3
  • latest
  • npm
  • Socket score

Version published
Weekly downloads
13
decreased by-40.91%
Maintainers
1
Weekly downloads
 
Created
Source

ngx-select-multiple (demo)

ngx-select-multiple A angular(6+) search and multi-select dropdown component for angular

Features

  • multi select dropdown
  • search dropdown list

Usage

  1. Install ngx-select-multiple through npm package manager using the following command:

    npm i ngx-select-multiple --save
    
  2. Add NgxSelectMultipleModule into your AppModule class. app.module.ts would look like this:

    import {NgModule} from '@angular/core';
    import {BrowserModule} from '@angular/platform-browser';
    import {AppComponent} from './app.component';
    import { NgxSelectMultipleModule } from 'ngx-select-ex';
    
    @NgModule({
      imports: [BrowserModule, NgxSelectMultipleModule],
      declarations: [AppComponent],
      bootstrap: [AppComponent],
    })
    export class AppModule {
    }
    
  3. Add the tag <ngx-select-multiple> into some html

    <ngx-select-multiple label="Frutas" [items]="items" placeholder="Procurar..." nameKey="name" (valueChange)="onValueChange($event)"></ngx-select-multiple>
    
    

Help Improve

Found a bug or an issue with this? Open a new issue here on GitHub.

Contributing to this project

Anyone and everyone is welcome to contribute. Please take a moment to review the guidelines for contributing.

FAQs

Package last updated on 02 Oct 2018

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc