@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.
- package/esm2020/list/list.component.mjs +5 -3
- package/fesm2015/pepperi-addons-ngx-lib-list.mjs +3 -2
- package/fesm2015/pepperi-addons-ngx-lib-list.mjs.map +1 -1
- package/fesm2020/pepperi-addons-ngx-lib-list.mjs +3 -2
- package/fesm2020/pepperi-addons-ngx-lib-list.mjs.map +1 -1
- package/package.json +1 -1
|
@@ -1568,13 +1568,14 @@ class PepListComponent {
|
|
|
1568
1568
|
const uiControlField = this._layout.ControlFields[index];
|
|
1569
1569
|
uiControlField.calcTitleColumnWidthString = this.lastColumnsWidth[index].calcTitleColumnWidthString;
|
|
1570
1570
|
uiControlField.calcColumnWidthString = this.lastColumnsWidth[index].calcColumnWidthString;
|
|
1571
|
+
totalCalcColsWidth += coerceNumberProperty(uiControlField.calcColumnWidthString.replace('px', ''), 0);
|
|
1571
1572
|
}
|
|
1573
|
+
widthToSet = (totalCalcColsWidth + this.getSelectionCheckBoxWidth()) + 'px';
|
|
1574
|
+
this.setColumnsWidth(widthToSet);
|
|
1572
1575
|
res = true;
|
|
1573
1576
|
}
|
|
1574
1577
|
}
|
|
1575
1578
|
}
|
|
1576
|
-
widthToSet = (totalCalcColsWidth + this.getSelectionCheckBoxWidth()) + 'px';
|
|
1577
|
-
this.setColumnsWidth('100%');
|
|
1578
1579
|
return res;
|
|
1579
1580
|
}
|
|
1580
1581
|
setColumnsWidth(widthToSet) {
|