angular.module.ng.$compileProvider.directive.textarea

Description

HTML textarea element control with angular data-binding. The data-binding and validation properties of this element are exactly the same as those of the input element.

Usage

as attribute
<ANY textarea
     ng-model="{string}"
     [name="{string}"]
     [required]
     [ng-minlength="{number}"]
     [ng-maxlength="{number}"]
     [ng-pattern="{string}"]
     [ng-change="{string}"]>
   ...
</ANY>
as class
<ANY class="textarea ng-model: {string}; [name: {string};] [required] [ng-minlength: {number};] [ng-maxlength: {number};] [ng-pattern: {string};] [ng-change: {string};]">
   ...
</ANY>

Parameters