In Ionic v3 there is an equivalent of onfocus
called (ionFocus)
.
For example to check on focus for an ion button it will be:
<button ion-button (ionFocus)="checkFocus()">Click Me</button>
I was wondering if there was an equivalent for onfocusout
.
I tired:
<button ion-button (ionFocusout)="checkFocus()">Click Me</button>
But that did not work.
Many thanks