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.
minlength attribute is used, with two differences: ngMinlength does not set the minlength attribute and therefore HTML5 constraint validation is not available. ngMinlength value must be an expression, while the minlength value must be interpolated. <ANY ng-minlength="expression"> ... </ANY>
| Param | Type | Details |
|---|---|---|
| ngMinlength | expression | AngularJS expression that must evaluate to a |
© 2010–2018 Google, Inc.
Licensed under the Creative Commons Attribution License 4.0.
https://code.angularjs.org/1.6.8/docs/api/ng/directive/ngMinlength