When i click the text box it will moving to the another page how implement this in ionic?

When i click the text box it will moving to the another page how implement this in ionic like autocomplete will open in another page? any idea?

    Thanks..!

Add a click handler to your textbox like

(click)="myFunction()"

Add this to ts file

myFunction(){
 this.navCtrl.push(newPage);
}