@ionic-selectable/angular

Angular wrapper for @ionic-selectable/core

Usage no npm install needed!

<script type="module">
  import ionicSelectableAngular from 'https://cdn.skypack.dev/@ionic-selectable/angular';
</script>

README

Ionic Selectable for Angular

npm npm npm

Angular wrapper for @ionic-selectable/core.

Demo | Features | Getting started | FAQ | Docs

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

iOS Demo

Contents

Supported Ionic versions

  • Ionic 5 (>=5.0.0) alpha

Supported previus Ionic versions

Features

Getting started

  1. Install it.
npm install @ionic-selectable/angular --save # only for angular
  1. Import it.
    First, import IonicSelectableModule to your app.module.ts that is normally located in src\app\app.module.ts.
import { IonicSelectableModule } from '@ionic-selectable/angular';

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

Note: Additionally, if you use Ionic 3+ you might be as well using lazy loaded pages. Check if your pages have a module file, for example, home.module.ts, and if they do then import IonicSelectableModule to each page module too.

import { IonicSelectableModule } from '@ionic-selectable/angular';
import { HomePage } from './home';

@NgModule({
  imports: [
    IonicSelectableModule
  ],
  declarations: [HomePage]
})
export class HomePageModule {}

  1. Add it to template.
<ion-item>
  <ion-label>Port</ion-label>
  <ionic-selectable
    [(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/angular ';

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 it is capable of.
    Also, explore the docs and FAQ to learn more about its features.

Development

For contribution and delevopment please refer to Contribution.

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 😄