mirror of
https://github.com/nasa/openmct.git
synced 2025-01-10 15:02:53 +00:00
b3da6edd0c
open #1515 open #117 Significant new vals added to constants files for datetime picker/calendar; Styling for calendar, hover and selected states; Modded DateTimePickerController.js and markup to allow selection of out-of-month cells;
74 lines
2.6 KiB
HTML
74 lines
2.6 KiB
HTML
<!--
|
|
Open MCT Web, Copyright (c) 2014-2015, United States Government
|
|
as represented by the Administrator of the National Aeronautics and Space
|
|
Administration. All rights reserved.
|
|
|
|
Open MCT Web is licensed under the Apache License, Version 2.0 (the
|
|
"License"); you may not use this file except in compliance with the License.
|
|
You may obtain a copy of the License at
|
|
http://www.apache.org/licenses/LICENSE-2.0.
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
License for the specific language governing permissions and limitations
|
|
under the License.
|
|
|
|
Open MCT Web includes source code licensed under additional open source
|
|
licenses. See the Open Source Licenses file (LICENSES.md) included with
|
|
this source code distribution or the Licensing information page available
|
|
at runtime from the About dialog for additional information.
|
|
-->
|
|
|
|
<div ng-controller="DateTimePickerController" class="l-datetime-picker s-datetime-picker s-menu">
|
|
<div class="holder">
|
|
<div class="l-month-year-pager">
|
|
<a class="pager prev" ng-click="changeMonth(-1)"></a>
|
|
<span class="val">{{month}} {{year}}</span>
|
|
<a class="pager next" ng-click="changeMonth(1)"></a>
|
|
</div>
|
|
<div class="l-calendar">
|
|
<ul class="l-cal-row l-header">
|
|
<li ng-repeat="day in ['Su','Mo','Tu','We','Th','Fr','Sa']">{{day}}</li>
|
|
</ul>
|
|
<ul class="l-cal-row l-body" ng-repeat="row in table">
|
|
<li ng-repeat="cell in row"
|
|
ng-click="select(cell)"
|
|
ng-class='{ "in-month": isInCurrentMonth(cell), selected: isSelected(cell) }'>
|
|
<div class="prime">{{cell.day}}</div>
|
|
<div class="sub">{{cell.dayOfYear}}</div>
|
|
</li>
|
|
</ul>
|
|
|
|
|
|
<!--<table>
|
|
<tr>
|
|
<th ng-repeat="day in ['Su','Mo','Tu','We','Th','Fr','Sa']">
|
|
{{day}}
|
|
</th>
|
|
</tr>
|
|
<tr ng-repeat="row in table">
|
|
<td style="text-align: center;"
|
|
ng-repeat="cell in row"
|
|
ng-click="select(cell)"
|
|
ng-class='{ disabled: !isSelectable(cell), selected: isSelected(cell) }'>
|
|
<div>{{cell.day}}</div>
|
|
<div style="font-size: 80%">{{cell.dayOfYear}}</div>
|
|
</td>
|
|
</tr>
|
|
</table>-->
|
|
</div>
|
|
</div>
|
|
<div class="l-time-selects"
|
|
ng-repeat="key in ['hours', 'minutes', 'seconds']"
|
|
ng-if="options[key]">
|
|
<div>{{nameFor(key)}}</div>
|
|
<div class='form-control select'>
|
|
<select size="1"
|
|
ng-model="time[key]"
|
|
ng-options="i for i in optionsFor(key)">
|
|
</select>
|
|
</div>
|
|
</div>
|
|
</div>
|