mirror of
https://github.com/nasa/openmct.git
synced 2024-12-24 23:36:41 +00:00
6784c6567b
Add mct-control which includes both the date-time picker and its corresponding text entry area, per code review feedback from nasa/openmctweb#204.
21 lines
690 B
HTML
21 lines
690 B
HTML
<span class="s-btn"
|
|
ng-controller="DateTimeFieldController">
|
|
<input type="text"
|
|
ng-model="textValue"
|
|
ng-class="{ error: textInvalid }">
|
|
</input>
|
|
<a class="ui-symbol icon icon-calendar"
|
|
ng-if="structure.format === 'utc' || !structure.format"
|
|
ng-click="pickerActive = !pickerActive">
|
|
</a>
|
|
<mct-popup ng-if="pickerActive">
|
|
<div mct-click-elsewhere="pickerActive = false">
|
|
<mct-control key="'datetime-picker'"
|
|
ng-model="ngModel"
|
|
field="field"
|
|
options="{ hours: true }">
|
|
</mct-control>
|
|
</div>
|
|
</mct-popup>
|
|
</span>
|