Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

ionic-selectable

Package Overview
Dependencies
Maintainers
1
Versions
32
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ionic-selectable

An Ionic component similar to Ionic Select, that allows to search items, including async search, group, add, edit, delete items, and much more.

  • 3.0.1
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
4.8K
decreased by-10.62%
Maintainers
1
Weekly downloads
 
Created
Source

Ionic Selectable

npm npm npm

An Ionic component similar to Ionic Select, that allows to search items, including async search, infinite scrolling and more.

iOS Demo

Contents

Getting started

  1. Decide on the version you want to use Free or Pro. See Version comparison to help you choose.

  2. Install it.

Ionic Selectable Free

npm install ionic-selectable --save

Ionic Selectable Pro

Purchase it from Ionic Market.
Copy ionic-selectable-3.0.1.tgz archive to the root of your project. Then cd to the project root and install the package.

npm install ionic-selectable-3.0.1.tgz
  1. Import it.
import { IonicSelectableModule } from 'ionic-selectable';

@NgModule({
    imports: [
        IonicSelectableModule
    ]
})
export class AppModule { }

  1. Add it to template.
<ion-item>
    <ion-label>Port</ion-label>
    <ionic-selectable
        item-content
        [(ngModel)]="port"
        [items]="ports"
        itemValueField="id"
        itemTextField="name"
        [canSearch]="true"
        (onChange)="portChange($event)">
    </ionic-selectable>
</ion-item>
  1. Configure it.
import { IonicSelectableComponent } from 'ionic-selectable';

class Port {
    public id: number;
    public name: string;
}

@Component({ ... })
export class HomePage {
    ports: Port[];
    port: Port;

    constructor() {
        this.ports = [
            { id: 1, name: 'Tokai' },
            { id: 2, name: 'Vladivostok' },
            { id: 3, name: 'Navlakhi' }
        ];
    }

    portChange(event: {
        component: IonicSelectableComponent,
        value: any 
    }) {
        console.log('port:', event.value);
    }
}
  1. Enjoy it 😉
  2. Check out live demos to see what Ionic Selectable is capable of.
    Also, explore the docs and FAQ to learn more about its features.

Version comparison

Ionic Selectable FreeIonic Selectable Pro
Single item selectionSingle item selection
Multiple item selectionMultiple item selection
Search itemsSearch items
Search items asynchronouslySearch items asynchronously
Angular Forms integrationAngular Forms integration
ValidationValidation
Ionic InfiniteScrollIonic InfiniteScroll
Ionic VirtualScrollIonic VirtualScroll
Templates
Grouping items
Editing, adding and deleting items
Disabling items

Share it

If you find this component useful, please star the repo to let others know that it's reliable. Also, share it with friends and colleagues who might find it useful as well. Thank you 😄

Keywords

FAQs

Package last updated on 16 Sep 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