@malekp/ng-dropdown

0.1.8 • Public • Published

Simple angular 2 dropdown component

Use this component to create a custom drop-down list on your page.

Install

$ npm install @malekp/ng-dropdown

Usage

app.module.ts

@NgModule({
  declarations: [
    AppComponent,
  ],
  imports: [
    BrowserModule,
    FormsModule,
    DropdownModule
  ],
  providers: [],
  bootstrap: [AppComponent]
})
export class AppModule { }

app.component.html

<ng-dropdown [items]="Items" [(model)]="Selected" [config]="{ groupBy: Group, searchBy: Filter, templateBy: Template }">
    <ng-template templateName="super" let-item>{{ item.Title }}</ng-template>
</ng-dropdown>

app.component.ts

public Template(item: any): string {
  return 'super';
}

public Group(item: any): string {
  return item.Title[0] % 2 === 0 ? 'Event' : 'Odd';
}

public Filter(item: any, expr: string): boolean {
  return expr ? item.Title.toLowerCase().includes(expr.toLowerCase()) : true;
}

Package Sidebar

Install

npm i @malekp/ng-dropdown

Weekly Downloads

0

Version

0.1.8

License

GPL-3.0

Unpacked Size

96 kB

Total Files

78

Last publish

Collaborators

  • malekp