OpenProject is the leading open source project management software.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
openproject/frontend/app/components/inplace-edit/field-directives/edit-date/edit-date.directive.html

17 lines
551 B

<div class="inplace-edit--date">
<label
class="hidden-for-sighted"
for="inplace-edit--write-value--{{::field.name}}">
{{::field.getLabel()}}
</label>
<input ng-model="field.value"
ng-change="onEdit()"
ng-click="showDatepicker()"
title="{{ fieldController.editTitle }}"
placeholder="-"
aria-label="{{::dateLabel}}"
class="inplace-edit--date"
id="inplace-edit--write-value--{{::field.name}}"
type="text" />
<div class="inplace-edit--date-picker"></div>
</div>