Summary Table
| Categories |
Total Count |
| PII |
0 |
| URL |
0 |
| DNS |
0 |
| EKL |
0 |
| IP |
0 |
| PORT |
0 |
| VsID |
0 |
| CF |
0 |
| AI |
0 |
| VPD |
0 |
| PL |
0 |
| Other |
0 |
File Content
<div class="form-input-wrapper">
<label for="{{fieldId}}">
<div>
<span class='input-label-content' required-field is-required="ngRequired">
<span ng-if="labelIcon.left"
role="{{labelIcon.left.onClick ? 'button' : ''}}"
class="btn btn-icon"
aria-label="{{labelIcon.left.iconLabel}}"
title="{{labelIcon.left.iconLabel}}"
ng-click="labelIcon.left.onClick()">
<i class="icon {{labelIcon.left.icon}}" aria-hidden="true"></i>
</span>
<span>{{label}}:</span>
<span ng-if="labelIcon.right"
role="{{labelIcon.right.onClick ? 'button' : ''}}"
class="btn btn-icon"
aria-label="{{labelIcon.right.iconLabel}}"
title="{{labelIcon.right.iconLabel}}"
ng-click="labelIcon.right.onClick()">
<i class="icon {{labelIcon.right.icon}}" aria-hidden="true"></i>
</span>
</span>
<span class="sr-only">{{disableMonthSelection ? 'YYYY' : (disableDaySelection ? 'MM/YYYY' : 'MM/DD/YYYY')}}</span>
<span class="sr-only">{{additionalScreenreaderText}}</span>
</div>
</label>
<div name="{{fieldId}}" class="date-control" form-control-wrapper error-handling="errorHandling">
<div class="full-width">
<div class="input-group">
<input type="text"
name="{{fieldId}}"
id="{{fieldId}}"
ng-model="ngModel"
ng-change="onChange()"
ng-keydown="onKeydown($event)"
class="form-control date-input"
placeholder="{{disableMonthSelection ? 'YYYY' : (disableDaySelection ? 'MM/YYYY' : 'MM/DD/YYYY')}}"
maxlength="10"
ng-disabled="ngDisabled"
aria-disabled="{{ngDisabled}}"
ng-readonly="ngReadonly"
aria-readonly="{{ngReadonly}}"
ng-required="ngRequired"
ng-trim="false"
ios-keyboard />
<span class="input-group-btn">
<button type="button"
class="btn btn-default"
accessible-date-picker
disable-month-selection="disableMonthSelection"
disable-day-selection="disableDaySelection"
allowed-date-range="validAllowedDateRange"
ng-model="ngModel"
date-format="{{disableMonthSelection ? 'yyyy' : (disableDaySelection ? 'MM/yyyy' : 'MM/dd/yyyy')}}"
ng-disabled="ngReadonly || ngDisabled">
<i class="icon icon-calendar" aria-hidden="true"></i>
<span class="sr-only">This date selection control is not optimized for screen readers. Please directly enter the date in the text box provided. Open Date Picker</span>
</button>
</span>
</div>
<span ng-if="showDay && ngModel" aria-label="Day selected is {{getDayOfWeek()}}" class="sr-only" tabindex="0">
Day selected is {{getDayOfWeek()}}
</span>
<span ng-if="showDay && ngModel" tabindex="-1" aria-hidden="true">{{getDayOfWeek()}}</span>
</div>
</div>
</div>