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 error-handling="errorHandling">
<div ng-repeat="phone in ngModel.slice(0, 1) track by $index" class="row">
<div class="col-xs-12 col-sm-4">
<input-phone name="primaryPhone"
label="{{primaryLabel}}:"
ng-model="phone.number"
ng-required="false"
ng-readonly="false"
ng-disabled="false"></input-phone>
</div>
<div class="col-xs-8 col-sm-4">
<input-select name="primaryPhoneType"
label="{{primaryLabel}} Type:"
options="typeOptions"
ng-disabled="false"
ng-required="false"
ng-readonly="false"
ng-model="phone.type"
show-null="true"></input-select>
</div>
</div>
<div ng-repeat="phone in ngModel.slice(1, ngModel.length) track by $index" class="row">
<div class="col-xs-12 col-sm-4">
<input-phone name="otherPhone{{$index + 1}}"
label="{{secondaryLabel}}:"
ng-model="phone.number"
ng-required="false"
ng-readonly="false"
ng-disabled="false"></input-phone>
</div>
<div class="col-xs-8 col-sm-4">
<input-select name="otherPhoneType{{$index + 1}}"
label="{{secondaryLabel}} Type:"
options="typeOptions"
ng-disabled="false"
ng-required="false"
ng-readonly="false"
ng-model="phone.type"
show-null="true"></input-select>
</div>
<div class="col-xs-4">
<div class="btn-delete-spacing" ng-if="ngModel.length > 2">
<button type="button" class="btn btn-default btn-xs" name="deletePhone{{$index + 1}}" title="Delete {{secondaryLabel}}" aria-label="Delete {{secondaryLabel}} Number {{phone.number || 'Empty'}} with type {{phone.type || 'none'}}" ng-click="deletePhone($index + 1)">
<span class="glyphicon glyphicon-remove" aria-hidden="true"></span>&nbsp;Delete
</button>
</div>
</div>
</div>
<div class="row">
<div class="col-xs-12">
<button type="button" class="btn btn-default" ng-click="addPhone()" ng-show="ngModel.length < 5" title="Add Phone">
<i class="icon icon-add" aria-hidden="true" style="font-size:12px;"></i>&nbsp;Add Phone
</button>
</div>
</div>
</div>