When using inside Popover Controller Like the following (Im using Ionic 2 latest Beta 2.0.0.-beta.11)
Note — I create a filter page like the following command > ionic g page filter
> let popover = this.popoverController.create(FilterPage);
> popover.present();
Inside filterPage.html
> <ion-select [(ngModel)]="month">
> <ion-option value="01">January</ion-option>
> <ion-option value="02">February</ion-option>
> </ion-select>
is showing properly but i can’t choose any value and i can’t press OK or Cancel