@eqproject/eqp-dynamic-module 2.8.18 → 2.8.20
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/field-templates/list-value-field-template/list-value-field-template.component.mjs +4 -1
- package/esm2020/lib/components/private/form-records/list-view-form-record/list-view-form-record.component.mjs +2 -1
- package/fesm2015/eqproject-eqp-dynamic-module.mjs +4 -0
- package/fesm2015/eqproject-eqp-dynamic-module.mjs.map +1 -1
- package/fesm2020/eqproject-eqp-dynamic-module.mjs +4 -0
- package/fesm2020/eqproject-eqp-dynamic-module.mjs.map +1 -1
- package/package.json +1 -1
|
@@ -2668,6 +2668,9 @@ class ListValueFieldTemplateComponent {
|
|
|
2668
2668
|
if (initialvalue != null) {
|
|
2669
2669
|
this.setSelectedItems(initialvalue);
|
|
2670
2670
|
}
|
|
2671
|
+
else {
|
|
2672
|
+
this.setSelectedItems(null);
|
|
2673
|
+
}
|
|
2671
2674
|
}
|
|
2672
2675
|
setSelectedItems(initialvalue) {
|
|
2673
2676
|
this.record[this.field.Label] = initialvalue;
|
|
@@ -6364,6 +6367,7 @@ class ListViewFormRecordComponent {
|
|
|
6364
6367
|
this.tabellarColumns.push(col);
|
|
6365
6368
|
}
|
|
6366
6369
|
});
|
|
6370
|
+
this.maxperiod.setHours(23, 59, 59, 59);
|
|
6367
6371
|
this.configurations.values.forEach((value) => {
|
|
6368
6372
|
if (new Date(value.AnswerDate) >= this.minperiod && new Date(value.AnswerDate) <= this.maxperiod) {
|
|
6369
6373
|
this.tabellarValues.push(value);
|