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 class="form-input-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}}'
required-non-zero-value
class="form-control"
ng-model="ngModel"
ng-required='ngRequired'
ng-disabled='ngDisabled'
ng-options="option for option in options track by option"
ng-change="change({newValue: ngModel})"
id="{{id}}-select"
ios-keyboard>
<option value="" ng-if='!hideNullOption' default>{{nullLabel || 'Select'}}</option>
</select>
</label>
</div>