I'm trying to get a function from the TS file of the page just like that, I would need to capture the html information to do a push conditional (navCtrl) for each option ... can someone help me ? The list in which I need to get the info has this code:
<ion-list>
<ion-item>
<ion-label>Ocupação</ion-label>
<ion-select [(ngModel)]="ocupacao">
<ion-option value="dir" >Diretor(a)</ion-option>
<ion-option value="prof">Professor(a)</ion-option>
<ion-option value="res">Responsável</ion-option>
<ion-option value="sec">Secretária</ion-option>
</ion-select>
</ion-item>
</ion-list>