I have a generic ion-option, but I want to display the value was selected from the list.
Before Ionic 2 RC, the CHECKED is able fulfill my requirement, but now it will return error.
Have you find a solution? It’s not working for me, either:
<ion-select [(ngModel)]="company.form">
<ion-option *ngFor="let form of forms" [value]="form" [selected]="true">{{form.name}}</ion-option>
</ion-select>
Constant true value in selected attribute was my last hope. I thought it will set the last option as selected but doens’t work even this way. Would be nice to have an example in the docs.