Created
May 21, 2019 01:25
-
-
Save k0d3d/c005462bb84807763883c1819ce7a4e2 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<ion-item> | |
<ion-label> | |
Sport Name | |
</ion-label> | |
<ion-select placeholder="Select Sport" (ionChange)="pickedSport($event)"> | |
<ion-select-option *ngFor="let sc of list" [value]="sc.CategoryName">{{sc.CategoryName}}</ion-select-option> | |
</ion-select> | |
</ion-item> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment