When the user selects 'Other' from the dropdown menu using Ionic2
and Angular2
, I want to provide them with an option to enter their profession.
Here is a visual representation of the select box:
https://i.sstatic.net/CRjAl.png
Below is the code snippet for achieving this functionality:
<ion-item>
<ion-label>Select Profession</ion-label>
<ion-select [(ngModel)]="userType">
<ion-option *ngFor="let ut of userTypeList" [value]="ut.value" [innerHTML]="ut.label"></ion-option>
</ion-select>
</ion-item>