pd edit changes
This commit is contained in:
parent
3ab9b842b5
commit
6428969354
@ -94,7 +94,7 @@ export class EditPdMasterComponent implements OnInit {
|
|||||||
addressline1: [this.masterChild.addressline1, Validators.compose([Validators.required])],
|
addressline1: [this.masterChild.addressline1, Validators.compose([Validators.required])],
|
||||||
addressline2: [this.masterChild.addressline2],
|
addressline2: [this.masterChild.addressline2],
|
||||||
addressline3: [this.masterChild.addressline3],
|
addressline3: [this.masterChild.addressline3],
|
||||||
fk_city: [this.masterChild.city, Validators.compose([Validators.required])],
|
fk_city: [this.masterChild.fk_city, Validators.compose([Validators.required])],
|
||||||
fk_state: [this.masterChild.fk_state, Validators.compose([Validators.required])],
|
fk_state: [this.masterChild.fk_state, Validators.compose([Validators.required])],
|
||||||
pincode : [this.masterChild.pincode, Validators.compose([Validators.required])],
|
pincode : [this.masterChild.pincode, Validators.compose([Validators.required])],
|
||||||
});
|
});
|
||||||
|
|||||||
@ -29,6 +29,7 @@
|
|||||||
|
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
</mat-list-item>
|
</mat-list-item>
|
||||||
<hr>
|
<hr>
|
||||||
</mat-list>
|
</mat-list>
|
||||||
@ -42,12 +43,12 @@
|
|||||||
</mat-card-content>
|
</mat-card-content>
|
||||||
|
|
||||||
<mat-card-actions *ngIf="!recordStatus">
|
<mat-card-actions *ngIf="!recordStatus">
|
||||||
<mat-paginator #paginator [length]="pdList.length" [pageIndex]="pageIndex" [pageSize]="pageSize"
|
<mat-paginator #paginator class="mat-elevation-z1" [length]="pdList.length" [pageIndex]="pageIndex" [pageSize]="pageSize"
|
||||||
[pageSizeOptions]="[5, 10, 25, 100]" (page)="pageEvent = $event; pageChange($event)">
|
[pageSizeOptions]="[5, 10, 25, 100]" (page)="pageEvent = $event; pageChange($event)">
|
||||||
</mat-paginator>
|
</mat-paginator>
|
||||||
</mat-card-actions>
|
</mat-card-actions>
|
||||||
</mat-tab>
|
</mat-tab>
|
||||||
<mat-tab>
|
<!-- <mat-tab>
|
||||||
<ng-template mat-tab-label>Confirmed PD Details</ng-template>
|
<ng-template mat-tab-label>Confirmed PD Details</ng-template>
|
||||||
<mat-card-content>
|
<mat-card-content>
|
||||||
<mat-grid-list cols="2" [rowHeight]="ratio" gutterSize="4px">
|
<mat-grid-list cols="2" [rowHeight]="ratio" gutterSize="4px">
|
||||||
@ -80,35 +81,8 @@
|
|||||||
</mat-form-field>
|
</mat-form-field>
|
||||||
</div>
|
</div>
|
||||||
</mat-card-content>
|
</mat-card-content>
|
||||||
</mat-tab>
|
|
||||||
<!-- <mat-tab>
|
|
||||||
<ng-template mat-tab-label>Headers</ng-template>
|
|
||||||
<mat-card-content class="pa-0">
|
|
||||||
<mat-grid-list cols="3" rowHeight="200px">
|
|
||||||
<mat-grid-tile *ngFor="let dog of dogs" style="background:gray">
|
|
||||||
<mat-grid-tile-header>
|
|
||||||
<mat-icon mat-grid-avatar>info_outline</mat-icon>
|
|
||||||
{{dog.name}}
|
|
||||||
</mat-grid-tile-header>
|
|
||||||
</mat-grid-tile>
|
|
||||||
</mat-grid-list>
|
|
||||||
</mat-card-content>
|
|
||||||
</mat-tab>
|
|
||||||
<mat-tab>
|
|
||||||
<ng-template mat-tab-label>Footers</ng-template>
|
|
||||||
<mat-card-content class="pa-0">
|
|
||||||
<mat-grid-list cols="3" rowHeight="200px">
|
|
||||||
<mat-grid-tile *ngFor="let dog of dogs">
|
|
||||||
<img [alt]="dog.name" src="https://material.angularjs.org/material2_assets/ngconf/{{dog.name}}.png">
|
|
||||||
<mat-grid-tile-footer>
|
|
||||||
<h3 mat-line>{{dog.name}}</h3>
|
|
||||||
<span mat-line>Human: {{dog.human}}</span>
|
|
||||||
<mat-icon>star_border</mat-icon>
|
|
||||||
</mat-grid-tile-footer>
|
|
||||||
</mat-grid-tile>
|
|
||||||
</mat-grid-list>
|
|
||||||
</mat-card-content>
|
|
||||||
</mat-tab> -->
|
</mat-tab> -->
|
||||||
|
|
||||||
</mat-tab-group>
|
</mat-tab-group>
|
||||||
</mat-card>
|
</mat-card>
|
||||||
|
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user