I’d like to react of ion-option selection change, i.e. to react before user closes ion-select.
ionic-preview-app indicates that it might be possible by:
<ion-option (select)="stpSelect()">Stone Temple Pilots</ion-option>
https://github.com/driftyco/ionic-preview-app/blob/master/app/pages/selects/basic/pages.ts#L18-L20
but stpSelect() is never invoked.
Is it possible to catch selection change in ion-select?
Thanks.