Change event on ion-select multiple?

I am trying to fire change event in ion-select multiple. But, it’s not firing. I have seen a similar issue in this link. I am using below code:

<ion-select interface="popover" class="note-select-list-documents"
         (ionChange)="changeInMacro()"
         (ngModelChange)="changeInMacro()"
          [(ngModel)]="macroValues[ind]"
          [multiple]="question.IsMultiSelect">
          <ion-option *ngFor="let option of question.PickListOptions; let i = index"
                 [selected]="i==0"
                 [value]="option">{{option}}
</ion-option>

I have tried with (ionChange) and (ngModelChange) but the changeInMacro() function did not fire.

1 Like