20 lines
665 B
HTML
20 lines
665 B
HTML
<div class="clearfix">
|
|
<label class="label_control-wrap">
|
|
<div class="custom-field__date_single">
|
|
<input type="text"
|
|
class="form-control"
|
|
datepicker-options="{'showWeeks': false}"
|
|
datepicker-popup="mediumDate"
|
|
aria-required="{{data.isRequired}}"
|
|
aria-labelledby="{{data.name + 'Label'}}"
|
|
ng-model="data.value"
|
|
ng-change="onFieldValueChange()"
|
|
is-open="status.opened"
|
|
show-button-bar="false"
|
|
ng-click="open($event)"
|
|
ng-disabled="data.isReadOnly || !isEditable"
|
|
ng-required="data.isRequired" />
|
|
<i class="icon-calendar custom-field__date-icon"></i>
|
|
</div>
|
|
</label>
|
|
</div> |