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 form-control-wrapper error-handling="errorHandling">
<label class="full-width" for='{{ngId}}' ng-class="{'sr-only': hideLabel}">
<span class='input-label-content' required-field is-required="ngRequired">{{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>
</label>
<select name='{{name}}'
id='{{ngId}}'
class="form-control"
ng-model="ngModel"
ng-required='ngRequired'
ng-disabled='ngDisabled'
ng-options="option for option in options track by option"
ng-change="itemChangeCallback({newValue: ngModel})"
ng-init="ngModel = (!hideNullOption) ? ngModel : options[0]"
ios-keyboard>
<option value="" ng-if='!hideNullOption' default>{{defaultValue}}</option>
</select>
</div>