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">
<span class='input-label-content' required-field is-required="ngRequired"><span name="{{name || label}}Label">{{label}}</span></span>
<select name='{{name}}'
class="form-control"
ng-model="ngModel"
ng-required='ngRequired'
ng-disabled='ngDisabled'
ng-options="option.value as option.label for option in options"
ng-change="itemChangeCallback({newValue: ngModel})"
ios-keyboard>
<option value="" ng-if="!hideNullOption" default>{{nullLabel || 'Select'}}</option>
</select>
</label>
</div>