Skip to content

Commit

Permalink
[AAE-6572] Search capability for dropdowns (#7387)
Browse files Browse the repository at this point in the history
  • Loading branch information
dhrn committed Nov 24, 2021
1 parent a40de80 commit 6fdc6c1
Show file tree
Hide file tree
Showing 4 changed files with 234 additions and 248 deletions.
Expand Up @@ -17,10 +17,13 @@
[compareWith]="compareDropdownValues"
(ngModelChange)="selectionChangedForField(field)"
[matTooltip]="field.tooltip"
panelClass="adf-select-filter"
matTooltipPosition="above"
matTooltipShowDelay="1000"
[multiple]="field.hasMultipleValues">
<mat-option *ngFor="let opt of field.options"
<adf-select-filter-input *ngIf="showInputFilter" (change)="filter$.next($event)"></adf-select-filter-input>

<mat-option *ngFor="let opt of list$ | async"
[value]="getOptionValue(opt, field.value)"
[id]="opt.id">{{opt.name}}
</mat-option>
Expand Down

0 comments on commit 6fdc6c1

Please sign in to comment.