210

In Angular Material Design 6, the (change) method was removed. How should I replace the change method to execute code in the component when the user changes selection?

Jeff Schaller
  • 2,352
  • 5
  • 23
  • 38
Fernando Lacoumette
  • 2,233
  • 2
  • 11
  • 9

7 Answers7

526

The changed it from change to selectionChange.

<mat-select (change)="doSomething($event)">

is now

<mat-select (selectionChange)="doSomething($event)">

https://material.angular.io/components/select/api

VtoCorleone
  • 16,813
  • 5
  • 37
  • 51
32

If you're using Reactive forms you can listen for changes to the select control like so..

this.form.get('mySelectControl').valueChanges.subscribe(value => { ... do stuff ... })
Joseph Simpson
  • 4,054
  • 1
  • 24
  • 28
  • 1
    It's worth noting that using the above reactive forms approach you are less tied to the UI and less likely to have problems as that UI framework evolves – Joseph Simpson May 31 '18 at 09:06
  • 1
    Just to note here that if you need to `.updateValueAndValidity` the control don't forget to pass `{ emitEvent: false }` in order to avoid `RangeError: Maximum call stack size exceeded`. On the other hand thanks for hint (+1), it lead me to what I needed. – dcg Nov 07 '19 at 16:39
  • Should I unsubscribe in the ngOnDestroy if I follow the approach? – some1 here Aug 02 '20 at 07:30
  • 1
    You always need to cleanup your subscriptions to avoid memory leaks and unexpected behaviour. – Joseph Simpson Aug 02 '20 at 11:02
  • you can also go with `this.form.controls.yourControlName.valueChanges.subscribe(values => { console.log('new value', value); }` – JanBrus Jul 03 '23 at 11:06
  • @Joseph using your approach how can I get an index of the selected item? – Mark Jul 20 '23 at 15:00
18

For:

1) mat-select (selectionChange)="myFunction()" works in angular as:

sample.component.html

 <mat-select placeholder="Select your option" [(ngModel)]="option" name="action" 
      (selectionChange)="onChange()">
     <mat-option *ngFor="let option of actions" [value]="option">
       {{option}}
     </mat-option>
 </mat-select>

sample.component.ts

actions=['A','B','C'];
onChange() {
  //Do something
}

2) Simple html select (change)="myFunction()" works in angular as:

sample.component.html

<select (change)="onChange()" [(ngModel)]="regObj.status">
    <option>A</option>
    <option>B</option>
    <option>C</option>
</select>

sample.component.ts

onChange() {
  //Do something
}
Kailas
  • 7,350
  • 3
  • 47
  • 63
10

For me (selectionChange) and the suggested (onSelectionChange) didn't work and I'm not using ReactiveForms. What I ended up doing was using the (valueChange) event like:

<mat-select (valueChange)="someFunction()">

And this worked for me

Kailas
  • 7,350
  • 3
  • 47
  • 63
silverhash
  • 880
  • 8
  • 21
  • I'm using a template form, and worked to me using the following: ` {{ manager.name }} ` – pcdro Apr 22 '19 at 21:13
4

I have this issue today with mat-option-group. The thing which solved me the problem is using in other provided event of mat-select : valueChange

I put here a little code for understanding :

<mat-form-field >
  <mat-label>Filter By</mat-label>
  <mat-select  panelClass="" #choosedValue (valueChange)="doSomething1(choosedValue.value)"> <!-- (valueChange)="doSomething1(choosedValue.value)" instead of (change) or other event-->

    <mat-option >-- None --</mat-option>
      <mat-optgroup  *ngFor="let group of filterData" [label]="group.viewValue"
                    style = "background-color: #0c5460">
        <mat-option *ngFor="let option of group.options" [value]="option.value">
          {{option.viewValue}}
        </mat-option>
      </mat-optgroup>
  </mat-select>
</mat-form-field>

Mat Version:

"@angular/material": "^6.4.7",

lingar
  • 477
  • 1
  • 7
  • 25
  • 1
    Thx for the answer, i was looking for this to get the value and viewValue from the html-binding. With selectionChange it does only send the value but not the viewValue via $event. – Benjamin Martin Oct 03 '22 at 09:28
1

For me ...(click)="myFunction()"... worked; nothing from above.

vpap
  • 1,389
  • 2
  • 21
  • 32
0

<mat-select (change)="doSomething($event)">

is now <mat-select (selectionChange)="doSomething($event)">

Umer Baba
  • 285
  • 3
  • 4