Hi Good Day, Is there a way to dynamically change function in ionChange event?
I tried this:
<ion-select (ionChange)=“test.event” // No error but did’nt work
<ion-select (ionChange)="{{test.event}}" // Shows error
<ion-select [(ionChange)]=“test.event” // Shows error
<ion-select {{ test.event }} // Shows error
<ion-select test.event // Shows error
Thanks.