@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.
@@ -5886,18 +5886,8 @@ class DbgetterComponent {
5886
5886
  var valueToBeSet = "";
5887
5887
  if (!this.field.IsMultiChoiche) {
5888
5888
  if (this.selectedElements.length > 0) {
5889
- this.selectedElements.forEach((selectedElement, index) => {
5890
- var correspondingCol = document.getElementById("col-" + selectedElement.KeyUsedSV + "-id-" + row['ID']);
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
  }