@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.
@@ -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 = isMultiple;
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) {