You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
hi all, is there a way to toggle the lazy option for the mask on focus/blur using the angular plugin?
this is how I am currently using imask. I am a newbie to angular and am not sure how when blur and focus methods are called, but it this is not updating the lazy option the way I'd expect:
// template<input[imask]="imaskOptions"[unmask]="false"(blur)="onBlur($event)"(focus)="onFocus($event)"(accept)="onAccept($event)"(complete)="onComplete($event)"/>// class imaskOptions={mask: "00/00/0000",lazy: this.isLazy,}isLazy=falseonBlur(){this.isLazy=true}onFocus(){this.isLazy=false}
is there a recommendation to achieve something like this?
The text was updated successfully, but these errors were encountered:
hi all, is there a way to toggle the
lazy
option for the mask on focus/blur using the angular plugin?this is how I am currently using imask. I am a newbie to angular and am not sure how when blur and focus methods are called, but it this is not updating the lazy option the way I'd expect:
is there a recommendation to achieve something like this?
The text was updated successfully, but these errors were encountered: