barsa-develop-components 1.0.253 → 1.0.254
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/esm2020/lib/subform-in-row-report/subform-in-row-report.component.mjs +4 -3
- package/fesm2015/barsa-develop-components.mjs +3 -2
- package/fesm2015/barsa-develop-components.mjs.map +1 -1
- package/fesm2020/barsa-develop-components.mjs +3 -2
- package/fesm2020/barsa-develop-components.mjs.map +1 -1
- package/package.json +1 -1
|
@@ -2434,13 +2434,14 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.7", ngImpor
|
|
|
2434
2434
|
class SubformInRowReportComponent extends BaseItemContentPropsComponent {
|
|
2435
2435
|
ngOnInit() {
|
|
2436
2436
|
super.ngOnInit();
|
|
2437
|
-
|
|
2437
|
+
const formPanelCtrl = createGridEditorFormPanel(this.formSetting, { ...this.mo }, this.typeDefId, null, false
|
|
2438
2438
|
// BarsaApi.Common.Util.TryGetValue(this.context.Setting, 'Extra.Relation')
|
|
2439
2439
|
);
|
|
2440
|
-
|
|
2440
|
+
formPanelCtrl.LoadAndCreate(null, false, false, () => {
|
|
2441
2441
|
this.loaded = true;
|
|
2442
2442
|
this._cdr.detectChanges();
|
|
2443
2443
|
});
|
|
2444
|
+
this.formPanelCtrl = formPanelCtrl;
|
|
2444
2445
|
}
|
|
2445
2446
|
}
|
|
2446
2447
|
SubformInRowReportComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.7", ngImport: i0, type: SubformInRowReportComponent, deps: null, target: i0.ɵɵFactoryTarget.Component });
|