claim-services.component.html
<igx-combo [type]="'line'" #pendDenyCombo id="pendDenyCombo" [itemsMaxHeight]="250" [data]="pendNdenyList"
[displayKey]="'longDescription'" [valueKey]="'commonCodeId'" placeholder="Select..."
searchPlaceholder="Search..." formControlName="serviceLineStatusId" (selectionChanging)="onPendDenychange($event)">
<label igxLabel>Pend/Deny</label>
</igx-combo>
private pendNdenyList: Array<CommonCodeModel>;
this.claimServicesForm.patchValue({
serviceLineStatusId: this.pendNdenyList.filter(x => x.commonCodeId == selectedItem.commonCodeId).map((lob) => lob.commonCodeId),
});