How to add max digit number validation in angular material 5?
up vote
0
down vote
favorite
I have an input field of number type.I want that anyone can only enter 4 digits on that field. How Can I achieve it?
angular-material-5
add a comment |
up vote
0
down vote
favorite
I have an input field of number type.I want that anyone can only enter 4 digits on that field. How Can I achieve it?
angular-material-5
Try setting, my friend <input type="number" min="-9999" max="9999">.
– Tomato32
Nov 19 at 13:23
add a comment |
up vote
0
down vote
favorite
up vote
0
down vote
favorite
I have an input field of number type.I want that anyone can only enter 4 digits on that field. How Can I achieve it?
angular-material-5
I have an input field of number type.I want that anyone can only enter 4 digits on that field. How Can I achieve it?
angular-material-5
angular-material-5
asked Nov 19 at 13:12
Noymul Islam Chowdhury
113
113
Try setting, my friend <input type="number" min="-9999" max="9999">.
– Tomato32
Nov 19 at 13:23
add a comment |
Try setting, my friend <input type="number" min="-9999" max="9999">.
– Tomato32
Nov 19 at 13:23
Try setting, my friend <input type="number" min="-9999" max="9999">.
– Tomato32
Nov 19 at 13:23
Try setting, my friend <input type="number" min="-9999" max="9999">.
– Tomato32
Nov 19 at 13:23
add a comment |
1 Answer
1
active
oldest
votes
up vote
0
down vote
To prevent more than 4 characters from being entered in the input field, set a maximum length:
<input maxlength="4">
This is the most basic way to achieve that. There are other ways to do it depending on whether or not you are using template or reactive forms. See the Angular guide for form validation: https://v5.angular.io/guide/form-validation.
add a comment |
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
0
down vote
To prevent more than 4 characters from being entered in the input field, set a maximum length:
<input maxlength="4">
This is the most basic way to achieve that. There are other ways to do it depending on whether or not you are using template or reactive forms. See the Angular guide for form validation: https://v5.angular.io/guide/form-validation.
add a comment |
up vote
0
down vote
To prevent more than 4 characters from being entered in the input field, set a maximum length:
<input maxlength="4">
This is the most basic way to achieve that. There are other ways to do it depending on whether or not you are using template or reactive forms. See the Angular guide for form validation: https://v5.angular.io/guide/form-validation.
add a comment |
up vote
0
down vote
up vote
0
down vote
To prevent more than 4 characters from being entered in the input field, set a maximum length:
<input maxlength="4">
This is the most basic way to achieve that. There are other ways to do it depending on whether or not you are using template or reactive forms. See the Angular guide for form validation: https://v5.angular.io/guide/form-validation.
To prevent more than 4 characters from being entered in the input field, set a maximum length:
<input maxlength="4">
This is the most basic way to achieve that. There are other ways to do it depending on whether or not you are using template or reactive forms. See the Angular guide for form validation: https://v5.angular.io/guide/form-validation.
answered Nov 21 at 16:16
G. Tranter
3,9211223
3,9211223
add a comment |
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53375413%2fhow-to-add-max-digit-number-validation-in-angular-material-5%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Try setting, my friend <input type="number" min="-9999" max="9999">.
– Tomato32
Nov 19 at 13:23