I want to get and store ID & Name of the selected value in dropdown when I select an option.
My HTML form
<ion-select
[(ngModel)]="id"
name="id"
ngDefaultControl
interface="popover">
<ion-select-option
value="{{data.id}}"
name="id"
*ngFor="let data of datas;">
{{data.name}}
</ion-select-option>
</ion-select>
Thanks
1 post - 1 participant