openmct/platform/forms/res/templates/controls/checkbox.html
Victor Woeltjen 658d485ccc [Forms] Initial minimal functionality
Initial minimal working implementation where a
two-way binding between form and form user is
observable.

Notably, change ng-options to options, since
ng-options is terminal (it breaks mct-control).

WTD-530
2014-11-26 10:43:48 -08:00

8 lines
196 B
HTML

<label class="checkbox custom no-text">
<input type="checkbox"
name="{{name}}"
ng-model="ngModel[name]"
ng-disabled="ngDisabled">
<em>&nbsp;</em>
</label>