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
Does the library support accesing unmasked value from event target? I have put onChange event on form tag to get any form change and event.target.value shows value with mask applied. My workaround to that is the code below but maybe library already allows that without accesing inputmask.
if (target.inputmask) {
value = target.inputmask.unmaskedvalue()
}
The text was updated successfully, but these errors were encountered:
Does the library support accesing unmasked value from event target? I have put
onChange
event onform
tag to get any form change andevent.target.value
shows value with mask applied. My workaround to that is the code below but maybe library already allows that without accesing inputmask.The text was updated successfully, but these errors were encountered: