- input in module ng
Standard HTML text input with angular data binding, inherited by most of the input
elements.
Directive Info
- This directive executes at priority level 0.
Usage
1 2 3 4 5 6 7 8 9 10 11 | < input type = "text" ng-model = "string" [ name = "string" ] [ required = "string" ] [ ng-required = "string" ] [ ng-minlength = "number" ] [ ng-maxlength = "number" ] [ pattern = "string" ] [ ng-pattern = "string" ] [ ng-change = "string" ] [ ng-trim = "boolean" ]> |
Arguments
Param | Type | Details |
---|---|---|
ngModel | string | Assignable angular expression to data-bind to. |
name (optional) | string | Property name of the form under which the control is published. |
required (optional) | string | Adds |
ngRequired (optional) | string | Adds |
ngMinlength (optional) | number | Sets |
ngMaxlength (optional) | number | Sets |
pattern (optional) | string | Similar to |
ngPattern (optional) | string | Sets |
ngChange (optional) | string | Angular expression to be executed when input changes due to user interaction with the input element. |
ngTrim (optional) | boolean | If set to false Angular will not automatically trim the input. This parameter is ignored for input[type=password] controls, which will never trim the input. (default: true) |
Please login to continue.