openmct/platform/forms/res/templates/controls/textfield.html
Victor Woeltjen d7c7e2835f [Forms] Let Angular force required rows
Pass along ng-required values such that Angular may
handle tracking of form validity based on the presence
of required fields. WTD-530.
2014-11-26 13:20:07 -08:00

9 lines
229 B
HTML

<span class='form-control shell'>
<span class='field control'>
<input type="text"
ng-required="ngRequired"
ng-model="ngModel[field]"
name="mctControl">
</span>
</span>