mirror of
https://github.com/nasa/openmct.git
synced 2024-12-23 06:52:24 +00:00
d7c7e2835f
Pass along ng-required values such that Angular may handle tracking of form validity based on the presence of required fields. WTD-530.
9 lines
310 B
HTML
9 lines
310 B
HTML
<select class='form-control input select'
|
|
ng-model="ngModel[field]"
|
|
ng-options="o.name for o in options"
|
|
ng-required="ngRequired"
|
|
name="mctControl">
|
|
<option value="" ng-if="!ngModel[field]">- Select One -</option>
|
|
<span class='ui-symbol arw colorKey'>v</span>
|
|
</select>
|