2.0.1 • Published 6 years ago

picklist-wf v2.0.1

Weekly downloads
1
License
ISC
Repository
github
Last release
6 years ago

picklist

this is a full responsive PickList.

Example

app.ts

import { Component } from "@angular/core";

let listA = [{id: 1, name: "Person1"},{id: 2, name: "Person2"},{id: 3, name: "Person3"},{id: 4, name: "Person4"},
             {id: 5, name: "Person5"},{id: 6, name: "Person6"},{id: 7, name: "Person7"}];

let listB = [{id: 4, name: "Person4"}];

@Component({
selector: 'app-root',
templateUrl: './app.component.html',
styleUrls: ['./app.component.css']
})
export class AppComponent {

selected: any[] = [];
title1: string = 'Title 1';
title2: string = 'Title 2';
list1: any[] = listA;
list2: any[] = listB;

}
 <div class="col-6">
    <picklist [list1]="list1"
              [title1]="title1" 
              [list2]="list2" 
              [title2]="title2" 
              [displayAttibute]="'name'"
              [(ngModel)]="selected">
    </picklist>
  </div>

alt pick

2.0.1

6 years ago

2.0.0

6 years ago

1.1.9

6 years ago

1.1.8

6 years ago

1.1.7

6 years ago

1.1.6

6 years ago

1.1.5

6 years ago

1.1.4

6 years ago

1.1.3

6 years ago

1.1.2

6 years ago

1.1.1

6 years ago

1.1.0

6 years ago

1.0.9

6 years ago

1.0.8

6 years ago

1.0.7

6 years ago

1.0.6

6 years ago

1.0.5

6 years ago

1.0.4

6 years ago

1.0.3

6 years ago

1.0.2

6 years ago

1.0.1

6 years ago

1.0.0

6 years ago