@pepperi-addons/ngx-lib 0.4.2-beta.69 → 0.4.2-beta.70

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.
@@ -1565,13 +1565,14 @@ class PepListComponent {
1565
1565
  const uiControlField = this._layout.ControlFields[index];
1566
1566
  uiControlField.calcTitleColumnWidthString = this.lastColumnsWidth[index].calcTitleColumnWidthString;
1567
1567
  uiControlField.calcColumnWidthString = this.lastColumnsWidth[index].calcColumnWidthString;
1568
+ totalCalcColsWidth += coerceNumberProperty(uiControlField.calcColumnWidthString.replace('px', ''), 0);
1568
1569
  }
1570
+ widthToSet = (totalCalcColsWidth + this.getSelectionCheckBoxWidth()) + 'px';
1571
+ this.setColumnsWidth(widthToSet);
1569
1572
  res = true;
1570
1573
  }
1571
1574
  }
1572
1575
  }
1573
- widthToSet = (totalCalcColsWidth + this.getSelectionCheckBoxWidth()) + 'px';
1574
- this.setColumnsWidth('100%');
1575
1576
  return res;
1576
1577
  }
1577
1578
  setColumnsWidth(widthToSet) {