Input uppercase

Hi,
I am not too sure what you want to do. But if you want to convert lowercase to uppercase, use angular pipes. see below links.

http://www.concretepage.com/angular-2/angular-2-uppercase-pipe-and-lowercase-pipe-example

You can use it with input as follows:

<ion-input type="text" [ngModel]='text | uppercase'></ion-input>

Ashley