EVOLUTION-MANAGER
Edit File: ngForm.html
<a href='https://github.com/angular/angular.js/edit/v1.3.x/src/ng/directive/form.js?message=docs(ngForm)%3A%20describe%20your%20change...#L283' class='improve-docs btn btn-primary'><i class="glyphicon glyphicon-edit"> </i>Improve this Doc</a> <a href='https://github.com/angular/angular.js/tree/v1.3.9/src/ng/directive/form.js#L283' class='view-source pull-right btn btn-primary'> <i class="glyphicon glyphicon-zoom-in"> </i>View Source </a> <header class="api-profile-header"> <h1 class="api-profile-header-heading">ngForm</h1> <ol class="api-profile-header-structure naked-list step-list"> <li> - directive in module <a href="api/ng">ng</a> </li> </ol> </header> <div class="api-profile-description"> <p>Nestable alias of <a href="api/ng/directive/form"><code>form</code></a> directive. HTML does not allow nesting of form elements. It is useful to nest forms, for example if the validity of a sub-group of controls needs to be determined.</p> <p>Note: the purpose of <code>ngForm</code> is to group controls, but not to be a replacement for the <code><form></code> tag with all of its capabilities (e.g. posting to the server, ...).</p> </div> <div> <h2>Directive Info</h2> <ul> <li>This directive executes at priority level 0.</li> </ul> <h2 id="usage">Usage</h2> <div class="usage"> <ul> <li>as element: (This directive can be used as custom element, but be aware of <a href="guide/ie">IE restrictions</a>). <pre><code><ng-form [name=""]> ... </ng-form></code></pre> </li> <li>as attribute: <pre><code><ANY [ng-form=""]> ... </ANY></code></pre> </li> <li>as CSS class: <pre><code><ANY class="[ng-form: ;]"> ... </ANY></code></pre> </li> </div> <section class="api-section"> <h3>Arguments</h3> <table class="variables-matrix input-arguments"> <thead> <tr> <th>Param</th> <th>Type</th> <th>Details</th> </tr> </thead> <tbody> <tr> <td> ngForm | name <div><em>(optional)</em></div> </td> <td> <a href="" class="label type-hint type-hint-string">string</a> </td> <td> <p>Name of the form. If specified, the form controller will be published into related scope, under this name.</p> </td> </tr> </tbody> </table> </section> </div>