The following is included in the conference app and populates the navigation <ion-list> <ion-list-header> Navigate </ion-list-header> <button ion-item menuClose *ngFor="let p of appPages" (click)="openPage(p)"> <ion-icon item-left [name]="p.icon"></ion-icon> {{p.title}} </button> </ion-list>
Can someone explain why the following won’t work? I’m trying use the same data and present it in an ion-select
<ion-list> <ion-list-header> Navigate Select </ion-list-header> <ion-select> <ion-option *ngFor="let p of appPages" [value]="p.index"> {{p.title}} </ion-option> </ion-select> </ion-list>
@MikePugs I have left menu in app.html, in that menu I have only navigation, so no ion-select. If you need ion-select in side menu which is visible on every screen that you have a problem