Answers for "mat-select onchange event"

0

mat-select change event

<mat-select  (selectionChange)="onBookChange($event)">
  ------
</mat-select>
Posted by: Guest on July-01-2021
1

mat-select onchange event

<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

Code answers related to "mat-select onchange event"

Browse Popular Code Answers by Language