|
|
|
|
|
|
|
|
<div class="example-wrapper" style="opacity:1;"> |
|
|
<div class="example-wrapper" style="opacity:1;"> |
|
|
<kendo-dialog title="Please confirm" *ngIf="dialogOpened" (close)="close('dialog')" [minWidth]="250" [width]="650"> |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<kendo-dialog title="Transaction" *ngIf="dialogOpened" (close)="close('dialog')" [minWidth]="500" [width]="850" |
|
|
|
|
|
[minHeight]="600" [height]="800"> |
|
|
<div class="example-wrapper"> |
|
|
<div class="example-wrapper"> |
|
|
<div class="row"> |
|
|
<div class="row"> |
|
|
<div class="col-xs-12 col-sm-6 example-col"> |
|
|
|
|
|
<p>ColorGradient</p> |
|
|
|
|
|
<kendo-colorgradient [value]="'#7e16c8'"></kendo-colorgradient> |
|
|
|
|
|
|
|
|
<div class="col-xs-12 col-sm-12 "> |
|
|
|
|
|
<kendo-splitter orientation="vertical" style="height: 675px;"> |
|
|
|
|
|
|
|
|
|
|
|
<kendo-splitter-pane> |
|
|
|
|
|
<kendo-splitter> |
|
|
|
|
|
|
|
|
|
|
|
<kendo-splitter-pane [collapsible]="true" size="50%"> |
|
|
|
|
|
<div class="pane-content"> |
|
|
|
|
|
<form class="k-form" [formGroup]="registerForm"> |
|
|
|
|
|
<fieldset class="k-form-fieldset"> |
|
|
|
|
|
<legend class="k-form-legend">Bank Transaction Details</legend> |
|
|
|
|
|
<kendo-formfield> |
|
|
|
|
|
<kendo-label [for]="transID" text="Transaction ID"></kendo-label> |
|
|
|
|
|
<input formControlName="transID" kendoTextBox #transID required /> |
|
|
|
|
|
|
|
|
|
|
|
<kendo-formhint>Unique transaction |
|
|
|
|
|
ID from bank </kendo-formhint> |
|
|
|
|
|
<kendo-formerror>Error: the ID is required</kendo-formerror> |
|
|
|
|
|
</kendo-formfield> |
|
|
|
|
|
|
|
|
|
|
|
<kendo-formfield> |
|
|
|
|
|
<kendo-label [for]="submissionDate" [optional]="false" |
|
|
|
|
|
text="Submission Date"></kendo-label> |
|
|
|
|
|
<kendo-datepicker #submissionDate formControlName="submissionDate" |
|
|
|
|
|
[min]="min" [max]="max"> |
|
|
|
|
|
</kendo-datepicker> |
|
|
|
|
|
|
|
|
|
|
|
<kendo-formhint>Date in bank</kendo-formhint> |
|
|
|
|
|
</kendo-formfield> |
|
|
|
|
|
|
|
|
|
|
|
<kendo-formfield> |
|
|
|
|
|
<kendo-label [for]="clientNames" [optional]="false" |
|
|
|
|
|
text="Client Names"></kendo-label> |
|
|
|
|
|
<kendo-multiselect |
|
|
|
|
|
#clientNames |
|
|
|
|
|
formControlName="clientNames" |
|
|
|
|
|
[textField]="'text'" |
|
|
|
|
|
[valueField]="'value'" |
|
|
|
|
|
[valuePrimitive]="true" |
|
|
|
|
|
[data]="listClientNames" |
|
|
|
|
|
> |
|
|
|
|
|
</kendo-multiselect> |
|
|
|
|
|
</kendo-formfield> |
|
|
|
|
|
|
|
|
|
|
|
<kendo-formfield> |
|
|
|
|
|
<kendo-label [for]="brokers" [optional]="false" |
|
|
|
|
|
text="Brokers Names"></kendo-label> |
|
|
|
|
|
<kendo-multiselect |
|
|
|
|
|
#brokers |
|
|
|
|
|
formControlName="brokers" |
|
|
|
|
|
[textField]="'text'" |
|
|
|
|
|
[valueField]="'value'" |
|
|
|
|
|
[valuePrimitive]="true" |
|
|
|
|
|
[data]="listClientNames" |
|
|
|
|
|
> |
|
|
|
|
|
</kendo-multiselect> |
|
|
|
|
|
</kendo-formfield> |
|
|
|
|
|
|
|
|
|
|
|
<kendo-formfield> |
|
|
|
|
|
<kendo-label [for]="referals" [optional]="false" |
|
|
|
|
|
text="Referals/BDM"></kendo-label> |
|
|
|
|
|
<kendo-multiselect |
|
|
|
|
|
#referals |
|
|
|
|
|
formControlName="referals" |
|
|
|
|
|
[textField]="'text'" |
|
|
|
|
|
[valueField]="'value'" |
|
|
|
|
|
[valuePrimitive]="true" |
|
|
|
|
|
[data]="listClientNames" |
|
|
|
|
|
> |
|
|
|
|
|
</kendo-multiselect> |
|
|
|
|
|
</kendo-formfield> |
|
|
|
|
|
|
|
|
|
|
|
<kendo-formfield> |
|
|
|
|
|
<kendo-label [for]="status" [text]="'Progress Status'"></kendo-label> |
|
|
|
|
|
<kendo-dropdownlist |
|
|
|
|
|
#status |
|
|
|
|
|
formControlName="status" |
|
|
|
|
|
[data]="listClientNames" |
|
|
|
|
|
[defaultItem]="{ text: 'Select Status', value: null }" |
|
|
|
|
|
[textField]="'text'" |
|
|
|
|
|
[valueField]="'value'" |
|
|
|
|
|
required |
|
|
|
|
|
> |
|
|
|
|
|
</kendo-dropdownlist> |
|
|
|
|
|
<kendo-formerror>Error: status is required</kendo-formerror> |
|
|
|
|
|
</kendo-formfield> |
|
|
|
|
|
|
|
|
|
|
|
<kendo-formfield> |
|
|
|
|
|
<kendo-label [for]="lender" text="Lender Organization"> |
|
|
|
|
|
</kendo-label> |
|
|
|
|
|
<input formControlName="lender" kendoTextBox #lender required /> |
|
|
|
|
|
|
|
|
|
|
|
<kendo-formhint>E.g. NAB Bank</kendo-formhint> |
|
|
|
|
|
<kendo-formerror>Error: Lender is required</kendo-formerror> |
|
|
|
|
|
</kendo-formfield> |
|
|
|
|
|
|
|
|
|
|
|
<kendo-formfield> |
|
|
|
|
|
<kendo-label [for]="limit" text="Loan Limit"> |
|
|
|
|
|
</kendo-label> |
|
|
|
|
|
<input formControlName="limit" kendoTextBox #limit required /> |
|
|
|
|
|
|
|
|
|
|
|
<kendo-formhint>E.g. 8000</kendo-formhint> |
|
|
|
|
|
<kendo-formerror>Error: Limit is required</kendo-formerror> |
|
|
|
|
|
</kendo-formfield> |
|
|
|
|
|
|
|
|
|
|
|
<kendo-formfield> |
|
|
|
|
|
<kendo-label [for]="settlementDate" [optional]="false" |
|
|
|
|
|
text="Settlement Date"></kendo-label> |
|
|
|
|
|
<kendo-datepicker #settlementDate formControlName="settlementDate" |
|
|
|
|
|
[min]="min" [max]="max"> |
|
|
|
|
|
</kendo-datepicker> |
|
|
|
|
|
|
|
|
|
|
|
<kendo-formhint>Date Settled</kendo-formhint> |
|
|
|
|
|
</kendo-formfield> |
|
|
|
|
|
|
|
|
|
|
|
<div class="k-form-buttons"> |
|
|
|
|
|
<button class="k-button k-primary" |
|
|
|
|
|
(click)="submitForm()">Submit</button> |
|
|
|
|
|
<button class="k-button" (click)="clearForm()">Clear</button> |
|
|
|
|
|
</div> |
|
|
|
|
|
</fieldset> |
|
|
|
|
|
</form> |
|
|
|
|
|
</div> |
|
|
|
|
|
</kendo-splitter-pane> |
|
|
|
|
|
|
|
|
|
|
|
<kendo-splitter-pane [collapsible]="true"> |
|
|
|
|
|
<div class="pane-content"> |
|
|
|
|
|
<h3>Commission Splits</h3> |
|
|
|
|
|
<p>Resizable and collapsible.</p> |
|
|
|
|
|
</div> |
|
|
|
|
|
</kendo-splitter-pane> |
|
|
|
|
|
|
|
|
|
|
|
</kendo-splitter> |
|
|
|
|
|
</kendo-splitter-pane> |
|
|
|
|
|
|
|
|
|
|
|
<kendo-splitter-pane [collapsible]="true" size="100px"> |
|
|
|
|
|
<div class="pane-content"> |
|
|
|
|
|
<h3>Revelant Parties</h3> |
|
|
|
|
|
<p> a table for revelant parties editable grid</p> |
|
|
|
|
|
</div> |
|
|
|
|
|
</kendo-splitter-pane> |
|
|
|
|
|
|
|
|
|
|
|
</kendo-splitter> |
|
|
</div> |
|
|
</div> |
|
|
</div> |
|
|
</div> |
|
|
</div> |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</div> |
|
|
|
|
|
|
|
|
<kendo-dialog-actions> |
|
|
<kendo-dialog-actions> |
|
|
<button kendoButton (click)="action('no')">No</button> |
|
|
<button kendoButton (click)="action('no')">No</button> |
|
|
<button kendoButton (click)="action('yes')" primary="true">Yes</button> |
|
|
<button kendoButton (click)="action('yes')" primary="true">Yes</button> |
|
|
|
|
|
|
|
|
</kendo-dialog> |
|
|
</kendo-dialog> |
|
|
|
|
|
|
|
|
<kendo-window [minWidth]="200" [minHeight]="125" title="About" *ngIf="windowOpened" (close)="close('window')"> |
|
|
<kendo-window [minWidth]="200" [minHeight]="125" title="About" *ngIf="windowOpened" (close)="close('window')"> |
|
|
<p style="text-align: center;">Additional info</p> |
|
|
|
|
|
</kendo-window> |
|
|
|
|
|
</div> |
|
|
|
|
|
|
|
|
<p style="text-align: center;">Additional info</p> |
|
|
|
|
|
</kendo-window> |
|
|
|
|
|
</div> |