I have a project and when i write something in input and press okay button on phone keyboard i want to focus next input. How can i do it ? Its my codes : Thanks for help !
<ion-list style="margin-top: 10%;">
<ion-item>
<ion-label position="floating" style="color: thistle; font-size: 20px;">Adınız : </ion-label>
<ion-input type="text" [(ngModel)]="user.name" (keyup.enter)="focusNext()" id="inputname" style="color:white" placeholder="Adınızı buraya giriniz.">
</ion-input>
</ion-item>
<ion-item>
<ion-label position="floating" style="color: thistle; font-size: 20px;">Soyadınız : </ion-label>
<ion-input type="text" id="inputsurname" [(ngModel)]="user.surname" style="color:white"
placeholder="Soyadınızı buraya giriniz."></ion-input>
</ion-item>
<ion-item>
<ion-label position="floating" style="color: thistle; font-size: 20px;">Email : </ion-label>
<ion-input type="email" id="inputemail" [(ngModel)]="user.email" style="color:white"
placeholder="Email adresinizi buraya giriniz."></ion-input>
</ion-item>
<ion-item>
<ion-label position="floating" style="color: thistle; font-size: 20px;">Telefon Numaranız : </ion-label>
<ion-input type="number" id="inputtel" [(ngModel)]="user.telno" style="color:white"
placeholder="Telefon Numaranızı buraya giriniz."></ion-input>
</ion-item>
<ion-item>
<ion-label position="floating" style="color: thistle; font-size: 20px;">Şifreniz : </ion-label>
<ion-input type="password" id="inputpass" [(ngModel)]="user.password" style="color:white"
placeholder="Şifrenizi buraya giriniz."></ion-input>
</ion-item>