@smartbit4all/ng-client 3.3.207 → 3.3.208
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/smart-grid/smart-grid.component.mjs +5 -2
- package/fesm2015/smartbit4all-ng-client.mjs +4 -1
- package/fesm2015/smartbit4all-ng-client.mjs.map +1 -1
- package/fesm2020/smartbit4all-ng-client.mjs +4 -1
- package/fesm2020/smartbit4all-ng-client.mjs.map +1 -1
- package/package.json +1 -1
- package/smartbit4all-ng-client-3.3.208.tgz +0 -0
- package/smartbit4all-ng-client-3.3.207.tgz +0 -0
|
@@ -10608,7 +10608,10 @@ class SmartGridComponent {
|
|
|
10608
10608
|
.rows.filter((gridRow) => gridRow.selected)
|
|
10609
10609
|
.map((gridRow) => gridRow.id);
|
|
10610
10610
|
tableConfig.selection = new SelectionModel(isMultiple, selectedIds);
|
|
10611
|
-
tableConfig.showCheckboxInHeader =
|
|
10611
|
+
tableConfig.showCheckboxInHeader =
|
|
10612
|
+
typeof tableConfig.showCheckboxInHeader !== 'undefined'
|
|
10613
|
+
? tableConfig.showCheckboxInHeader // keep if set
|
|
10614
|
+
: isMultiple; // if unset, turn it on for multiple selection
|
|
10612
10615
|
}
|
|
10613
10616
|
this.smartTable = new SmartTable(tableConfig);
|
|
10614
10617
|
if (this.componentRefTable) {
|