no message
This commit is contained in:
parent
38241fe955
commit
3acba4ceb6
|
@ -6,8 +6,7 @@
|
||||||
<i>{{group.extendedDescription}}</i>
|
<i>{{group.extendedDescription}}</i>
|
||||||
</h5> -->
|
</h5> -->
|
||||||
<div *ngFor="let compositeField of group.compositeFields; let i = index;">
|
<div *ngFor="let compositeField of group.compositeFields; let i = index;">
|
||||||
<df-composite-field [compositeField]="compositeField" [form]="form.get('compositeFields').get(''+i)" [path]="path"
|
<df-composite-field [compositeField]="compositeField" [form]="form.get('compositeFields').get(''+i)" [path]="path" [pathName]="pathName+'.compositeFields.'+i"></df-composite-field>
|
||||||
[pathName]="pathName+'.compositeFields.'+i"></df-composite-field>
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
|
@ -9,7 +9,7 @@
|
||||||
<button type="button" class="btn btn-primary" (click)="submit();">Save and Finalize</button>
|
<button type="button" class="btn btn-primary" (click)="submit();">Save and Finalize</button>
|
||||||
<progress-bar class="ui-g" *ngIf="progressbar" [formGroup]=form></progress-bar>
|
<progress-bar class="ui-g" *ngIf="progressbar" [formGroup]=form></progress-bar>
|
||||||
<div class="ui-g-12">
|
<div class="ui-g-12">
|
||||||
<p-steps [model]="stepperItems" [activeIndex]="this.paginationService.getCurrentIndex()" (activeIndex)="this.paginationService.setCurrentIndex($event)"
|
<p-steps [model]="stepperItems" [activeIndex]="this.currentPage" (activeIndex)="this.paginationService.setCurrentIndex($event)"
|
||||||
[readonly]="false"></p-steps>
|
[readonly]="false"></p-steps>
|
||||||
</div>
|
</div>
|
||||||
<div class="ui-g-12">
|
<div class="ui-g-12">
|
||||||
|
@ -20,7 +20,7 @@
|
||||||
<form *ngIf="form" novalidate [formGroup]="form" (ngSubmit)="onSubmit()">
|
<form *ngIf="form" novalidate [formGroup]="form" (ngSubmit)="onSubmit()">
|
||||||
|
|
||||||
<div *ngFor="let section of dataModel.sections; let i = index;">
|
<div *ngFor="let section of dataModel.sections; let i = index;">
|
||||||
<df-section *ngIf='this.paginationService.isElementVisible(section.page)' [section]="section" [form]="form.get('sections').get(''+i)"
|
<df-section *ngIf='this.shouldDisplaySection(section)' [section]="section" [form]="form.get('sections').get(''+i)"
|
||||||
[path]="i+1" [pathName]="'sections.'+i"></df-section>
|
[path]="i+1" [pathName]="'sections.'+i"></df-section>
|
||||||
</div>
|
</div>
|
||||||
</form>
|
</form>
|
||||||
|
|
Loading…
Reference in New Issue