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-templates/edit/integer.html

17 lines
619 B

<div class="integer-wrapper">
<label
class="hidden-for-sighted"
for="inplace-edit--write-value--{{::field.name}}">
{{::field.getLabel()}}
</label>
<input class="focus-input inplace-edit--text-field"
id="inplace-edit--write-value--{{::field.name}}"
name="value"
type="number"
ng-minlength="{{ fieldSchema.minLength }}"
ng-maxlength="{{ fieldSchema.maxLength }}"
ng-disabled="fieldController.state.isBusy"
ng-required="fieldController.isRequired"
title="{{ fieldController.editTitle }}"
ng-model="field.value" />
</div>