HTML textarea element widget with angular data-binding. The data-binding and validation
properties of this element are exactly the same as those of the
input element
.
<textarea type="..." ng:model="..." [name="..."] [required] [ng:minlength="..."] [ng:maxlength="..."] [ng:pattern="..."] [ng:change="..."]></textarea>
type – {string} –
Widget types as defined by angular.inputType
. If the
type is in the format of @ScopeType
then ScopeType
is loaded from the
current scope, allowing quick definition of type.
ng:model – {string} –
Assignable angular expression to data-bind to.
name(optional) – {string=} –
Property name of the form under which the widgets is published.
required(optional) – {string=} –
Sets REQUIRED
validation error key if the value is not entered.
ng:minlength(optional) – {number=} –
Sets MINLENGTH
validation error key if the value is shorter than
minlength.
ng:maxlength(optional) – {number=} –
Sets MAXLENGTH
validation error key if the value is longer than
maxlength.
ng:pattern(optional) – {string=} –
Sets PATTERN
validation error key if the value does not match the
RegExp pattern expression. Expected value is /regexp/
for inline patterns or regexp
for
patterns defined as scope expressions.
ng:change(optional) – {string=} –
Angular expression to be executed when input changes due to user interaction with the input element.