aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/shared/shared-forms/select/select-custom-input.component.html
blob: 84fa15c3ddee250738c890757357aea2f5027a4f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<ng-select
  [(ngModel)]="selectedId"
  (ngModelChange)="onModelChange()"
  [bindLabel]="bindLabel"
  [bindValue]="bindValue"
  [clearable]="clearable"
  [searchable]="searchable"
>
  <ng-option *ngFor="let item of items" [value]="item.id">
    {{ channel.label }}
  </ng-option>

  <ng-content></ng-content>
</ng-select>