Im trying to create ion-select with preselected value and generated options but Im facing problem, initial select is not displayed until I interact with select. I assume that this component is checking for available options to display based on given value and then generating options in *ngFor loop. Am I doing it wrong? Or is there any way to solve this problem?
<ion-select value="preselect.id">
<ion-select-option *ngFor="let item of itemList" [value]="item.id">
{{ item.name}}
</ion-select-option>
</ion-select>
I have solved the same issue with adding ngModel .
And at .ts file