Is there a way to keep the ion-select open after clicking on a ion-select-option, i am using popover interface for the IonSelect.
<ion-select
#Select
[interfaceOptions]="textToneModel"
interface="popover"
value="{{ selectedValue?.fileName }}"
(ionChange)="onToneClick($event)"
>
<ion-select-option
*ngFor="let tone of items"
value="{{ tone.fileName }}"
>{{ tone.name }}</ion-select-option
>
</ion-select>
When a user clicks on an ion-select-option i am trying to trigger onToneClick() but not close the popover.
using Ionic Framework : @ionic/angular 5.6.12