-
Notifications
You must be signed in to change notification settings - Fork 71
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
validation issue (requiredPattern) #15
Comments
I'm having the same problem |
you need to take out the form control from your auto validations by angular etc and do your own validation based on the form control value. |
There is HTML validation for input field. |
Found a workaround. Leave the pattern as it is (pattern="[0-9]*") in the input element and then clear and then set the needed validators on input focus.
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Due to this pattern (pattern="[0-9]*") my form-control is invalid when typing decimal number. When using other pattern plugin doesn't work
The text was updated successfully, but these errors were encountered: