@eqproject/eqp-dynamic-module 2.10.45 → 2.10.47
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 +3 -13
- package/fesm2015/eqproject-eqp-dynamic-module.mjs +2 -12
- package/fesm2015/eqproject-eqp-dynamic-module.mjs.map +1 -1
- package/fesm2020/eqproject-eqp-dynamic-module.mjs +2 -12
- package/fesm2020/eqproject-eqp-dynamic-module.mjs.map +1 -1
- package/package.json +1 -1
|
@@ -5886,18 +5886,8 @@ class DbgetterComponent {
|
|
|
5886
5886
|
var valueToBeSet = "";
|
|
5887
5887
|
if (!this.field.IsMultiChoiche) {
|
|
5888
5888
|
if (this.selectedElements.length > 0) {
|
|
5889
|
-
|
|
5890
|
-
|
|
5891
|
-
if (correspondingCol == null) {
|
|
5892
|
-
correspondingCol = document.getElementById("col-" + selectedElement.KeySV + "-id-" + row['ID']);
|
|
5893
|
-
}
|
|
5894
|
-
if (this.field.DataGetter.DataGetterColumnForce == null) {
|
|
5895
|
-
correspondingCol.classList.remove("row-selected");
|
|
5896
|
-
}
|
|
5897
|
-
else {
|
|
5898
|
-
correspondingCol.parentElement.classList.remove("row-selected");
|
|
5899
|
-
}
|
|
5900
|
-
this.selectedElements.splice(index, 1);
|
|
5889
|
+
document.querySelectorAll(".table.table-multiselect-forced > td").forEach((col) => {
|
|
5890
|
+
col.classList.remove("row-selected");
|
|
5901
5891
|
});
|
|
5902
5892
|
this.selectedElements = new Array();
|
|
5903
5893
|
}
|