summaryrefslogtreecommitdiffstats
path: root/3rdparty/js/angular-1.0.2/docs/partials/api/ng.directive:form.FormController.html
diff options
context:
space:
mode:
authorBernhard Posselt <nukeawhale@gmail.com>2013-01-27 04:15:53 +0100
committerBernhard Posselt <nukeawhale@gmail.com>2013-01-27 04:15:53 +0100
commitae7393db3d99a7ac223ae917129cccd9f49888e3 (patch)
tree7f54b72b0d01c38afd1378365a67e4f192922423 /3rdparty/js/angular-1.0.2/docs/partials/api/ng.directive:form.FormController.html
parent483784caa38bd6131405ac474347a215584e30a5 (diff)
merged the angularjs branch
Diffstat (limited to '3rdparty/js/angular-1.0.2/docs/partials/api/ng.directive:form.FormController.html')
-rw-r--r--3rdparty/js/angular-1.0.2/docs/partials/api/ng.directive:form.FormController.html35
1 files changed, 35 insertions, 0 deletions
diff --git a/3rdparty/js/angular-1.0.2/docs/partials/api/ng.directive:form.FormController.html b/3rdparty/js/angular-1.0.2/docs/partials/api/ng.directive:form.FormController.html
new file mode 100644
index 000000000..67ca92336
--- /dev/null
+++ b/3rdparty/js/angular-1.0.2/docs/partials/api/ng.directive:form.FormController.html
@@ -0,0 +1,35 @@
+<h1><code ng:non-bindable="">FormController</code>
+<span class="hint">(type in module <code ng:non-bindable="">ng</code>
+)</span>
+</h1>
+<div><h2 id="Description">Description</h2>
+<div class="description"><p><code>FormController</code> keeps track of all its controls and nested forms as well as state of them,
+such as being valid/invalid or dirty/pristine.</p>
+
+<p>Each <a href="api/ng.directive:form"><code>form</code></a> directive creates an instance
+of <code>FormController</code>.</p></div>
+<div class="member property"><h2 id="Properties">Properties</h2>
+<ul class="properties"><li><h3 id="$pristine">$pristine</h3>
+<div class="$pristine"><p>True if user has not interacted with the form yet.</p></div>
+</li>
+<li><h3 id="$dirty">$dirty</h3>
+<div class="$dirty"><p>True if user has already interacted with the form.</p></div>
+</li>
+<li><h3 id="$valid">$valid</h3>
+<div class="$valid"><p>True if all of the containg forms and controls are valid.</p></div>
+</li>
+<li><h3 id="$invalid">$invalid</h3>
+<div class="$invalid"><p>True if at least one containing control or form is invalid.</p></div>
+</li>
+<li><h3 id="$error">$error</h3>
+<div class="$error"><p>Is an object hash, containing references to all invalid controls or
+forms, where:</p>
+
+<ul>
+<li>keys are validation tokens (error names) — such as <code>REQUIRED</code>, <code>URL</code> or <code>EMAIL</code>),</li>
+<li>values are arrays of controls or forms that are invalid with given error.</li>
+</ul></div>
+</li>
+</ul>
+</div>
+</div>