Answers for "mat select on select"

1

mat select on select

<mat-form-field>
    <mat-select placeholder="State" (selectionChange)="someMethod($event.value)">
        <mat-option *ngFor="let state of states" [value]="state.value">
            {{ state.viewValue }}
        </mat-option>
    </mat-select>
</mat-form-field>
Posted by: Guest on April-30-2020
0

select in mat-option

<mat-select [(value)]="selected2">
Posted by: Guest on February-04-2021

Browse Popular Code Answers by Language