- directive in module ng
ngMinlength adds the minlength validator
to ngModel
. It is most often used for text-based input
controls, but can also be applied to custom text-based controls.
The validator sets the minlength
error key if the ngModel.$viewValue
is shorter than the integer obtained by evaluating the Angular expression given in the ngMinlength
attribute value.
Note: This directive is also added when the plain
minlength
attribute is used, with two differences: -
ngMinlength
does not set theminlength
attribute and therefore HTML5 constraint validation is not available. - The
ngMinlength
value must be an expression, while theminlength
value must be interpolated.
Directive Info
- This directive executes at priority level 0.
Usage
- as attribute:
<ANY> ... </ANY>
Please login to continue.