Fairoj : Address Field navigation issue fixed
This commit is contained in:
parent
fce56d9222
commit
f72f9a9bb0
@ -149,8 +149,8 @@
|
|||||||
<div formArrayName="addresses" *ngFor="let addresses of pdAddresses.controls; let i = index;">
|
<div formArrayName="addresses" *ngFor="let addresses of pdAddresses.controls; let i = index;">
|
||||||
<mat-card-content [formGroupName]="i">
|
<mat-card-content [formGroupName]="i">
|
||||||
<mat-form-field style="width: 96%">
|
<mat-form-field style="width: 96%">
|
||||||
<textarea matInput autocomplete="off" placeholder="Address at which PD is to be done" formControlName="addressline1"
|
<textarea matInput autocomplete="off" placeholder="Address at which PD is to be done" formControlName="addressline1" style="text-transform: capitalize"
|
||||||
[value]="addresses.get('addressline1').value | titlecase"></textarea>
|
[value]="addresses.get('addressline1').value"></textarea>
|
||||||
<!-- oninput="this.value = this.value.toUpperCase()" -->
|
<!-- oninput="this.value = this.value.toUpperCase()" -->
|
||||||
<!-- <mat-error *ngIf="pdAddresses.addressline1.hasError('required')">Address1 required.</mat-error> -->
|
<!-- <mat-error *ngIf="pdAddresses.addressline1.hasError('required')">Address1 required.</mat-error> -->
|
||||||
</mat-form-field>
|
</mat-form-field>
|
||||||
|
|||||||
@ -175,8 +175,8 @@
|
|||||||
<mat-card-content>
|
<mat-card-content>
|
||||||
|
|
||||||
<mat-form-field style="width: 96%">
|
<mat-form-field style="width: 96%">
|
||||||
<textarea matInput autocomplete="off" placeholder="Address at which PD is to be done"
|
<textarea matInput autocomplete="off" placeholder="Address at which PD is to be done" style="text-transform: capitalize"
|
||||||
formControlName="addressline1" [value]="addresses.get('addressline1').value | titlecase"></textarea>
|
formControlName="addressline1" [value]="addresses.get('addressline1').value"></textarea>
|
||||||
</mat-form-field>
|
</mat-form-field>
|
||||||
|
|
||||||
<mat-form-field style="width: 32%">
|
<mat-form-field style="width: 32%">
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user