@eqproject/eqp-dynamic-module 2.7.9 → 2.7.10
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/components/private/dbgetter/dbgetter.component.mjs +9 -7
- package/fesm2015/eqproject-eqp-dynamic-module.mjs +8 -6
- package/fesm2015/eqproject-eqp-dynamic-module.mjs.map +1 -1
- package/fesm2020/eqproject-eqp-dynamic-module.mjs +8 -6
- package/fesm2020/eqproject-eqp-dynamic-module.mjs.map +1 -1
- package/package.json +1 -1
|
@@ -4467,8 +4467,14 @@ class DbgetterComponent {
|
|
|
4467
4467
|
}
|
|
4468
4468
|
else {
|
|
4469
4469
|
if (behaviours.indexOf("manage-question-in-dbgetter") != -1) {
|
|
4470
|
-
|
|
4471
|
-
|
|
4470
|
+
if (behaviours.indexOf("silent-send-out") != -1) {
|
|
4471
|
+
this.showButtonReply = true;
|
|
4472
|
+
this.showTable = false;
|
|
4473
|
+
}
|
|
4474
|
+
else {
|
|
4475
|
+
this.showButtonReply = false;
|
|
4476
|
+
this.showTable = true;
|
|
4477
|
+
}
|
|
4472
4478
|
}
|
|
4473
4479
|
else {
|
|
4474
4480
|
if (!this.DirectlyOpenTable) {
|
|
@@ -4487,10 +4493,6 @@ class DbgetterComponent {
|
|
|
4487
4493
|
}
|
|
4488
4494
|
}
|
|
4489
4495
|
onClickButtonReply() {
|
|
4490
|
-
if (this.haveQuestions) {
|
|
4491
|
-
this.QueryEditorComponent.inputParams.DMButtonClicked = Math.random();
|
|
4492
|
-
this.QueryEditorComponent.component.onClickDMButton();
|
|
4493
|
-
}
|
|
4494
4496
|
if (this.haveRelations) {
|
|
4495
4497
|
var relationLoaded = true;
|
|
4496
4498
|
this.field.DataGetter.DataGetterValue.openedFields.filter(x => x.QueryPropertyValue.indexOf('!') != -1).forEach((fieldWithRelation) => {
|