@nanexcool wrote:
I had to switch from using an ion-input to a regular input because events weren't being fired.
I tried:
<ion-input (blur)="onBlur($event)" (focus)="onFocus($event)" type="text"></ion-input>
and it didn't work. But this did:
<input (blur)="onBlur($event)" (focus)="onFocus($event)" type="text" />
Does the ion-input not expose all input events?
Posts: 3
Participants: 2