ngMaxlength (directive)

Improve this Doc View Source ngMaxlength

  1. directive in module ng

ngMaxlength adds the maxlength 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 maxlength error key if the ngModel.$viewValue is longer than the integer obtained by evaluating the Angular expression given in the ngMaxlength attribute value.

Note: This directive is also added when the plain maxlength attribute is used, with two differences:
  1. ngMaxlength does not set the maxlength attribute and therefore HTML5 constraint validation is not available.
  2. The ngMaxlength attribute must be an expression, while the maxlength value must be interpolated.

Directive Info

  • This directive executes at priority level 0.

Usage

  • as element: (This directive can be used as custom element, but be aware of IE restrictions).
    <ng-maxlength>
    ...
    </ng-maxlength>
  • as attribute:
    <ANY>
    ...
    </ANY>

© 2010–2017 Google, Inc.
Licensed under the Creative Commons Attribution License 4.0.
https://code.angularjs.org/1.6.4/docs/api/ng/directive/ngMaxlength

在线笔记
App下载
App下载

扫描二维码

下载编程狮App

公众号
微信公众号

编程狮公众号

意见反馈
返回顶部