showing results for - "angular mat select open programmatically"
Viktoria
13 Apr 2019
1<mat-form-field appearance="fill" class="myfilter">
2  <mat-label>Toppings</mat-label>
3  <mat-select multiple #filter>
4    <mat-option *ngFor="let topping of toppingList" [value]="topping">{{topping}}</mat-option>
5  </mat-select>
6</mat-form-field>
7<button mat-raised-button color="primary" (click)="filter.open()">check</button>