I'm using Ionic v2 and I can not set the selected value when showing the page.
<ion-select [(ngModel)]="company.form">
<ion-option *ngFor="let form of forms" [value]="form" [selected]="true">{{form.name}}</ion-option>
</ion-select>
I've tried with checked
, too but that isn't work either. How can I do this?
Cordova CLI: 6.4.0
Ionic Framework Version: 2.0.0-rc.3
Ionic CLI Version: 2.1.13
Ionic App Lib Version: 2.1.7
Ionic App Scripts Version: 0.0.45
inside your ts file
This is working for me.
In html :
In ts :
You do not need to work with the attribute selected or [selected] it is not necessary