Broker System for Supercredit
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- <div #anchor class="anchor wrapper">
- <button kendoButton *ngIf="!readOnly" (click)="onToggle()" [icon]="'edit'" ></button>
- <app-loan-card *ngIf="Loan!==undefined && Loan !== null && Loan.Id !=='' "
- [Loan]="Loan" [ShowCloseButton]="false"></app-loan-card>
- </div>
-
- <kendo-popup [offset]="Offset" (anchorViewportLeave)="showPopup = false" *ngIf="showPopup">
- <div class='popup-content'>
- <app-list-all-loans #list
- (LoanSelected)="onLoanSelected($event)"
- [EnableSelectButton]="true"
- [SingleSelection]="true"
- [MaxSelect]="Max"
- [Preselect]="[Loan]"
- >
- </app-list-all-loans>
- </div>
- </kendo-popup>
|