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
I'm using mask with that props: ... , showMaskOnHover: false , showMaskOnFocus: true , clearMaskOnLostFocus: false , clearMaskOnEmpty : true // NEW , clearIncomplete: false , autoUnmask: false ...
the main idea is that mask visible only when we are focusing at input (no mouse event), and should be visible always excepts empty value. can't use clearIncomplete , because it will clear value it is not complete, but I don't want it. can't use clearMaskOnLostFocus , because I'm not using mouse event.
the main problem is ie11, that forces focus event on placeholder change, so I can't clean up mask from within without re-focusing to the field. I can do pull request or something to show the idea.
The text was updated successfully, but these errors were encountered:
I'm using mask with that props:
... , showMaskOnHover: false , showMaskOnFocus: true , clearMaskOnLostFocus: false , clearMaskOnEmpty : true // NEW , clearIncomplete: false , autoUnmask: false ...
the main idea is that mask visible only when we are focusing at input (no mouse event), and should be visible always excepts empty value. can't use clearIncomplete , because it will clear value it is not complete, but I don't want it. can't use clearMaskOnLostFocus , because I'm not using mouse event.
the main problem is ie11, that forces focus event on placeholder change, so I can't clean up mask from within without re-focusing to the field. I can do pull request or something to show the idea.
The text was updated successfully, but these errors were encountered: