@servicemind.tis/tis-smart-table-viewer 2.3.14 → 2.3.15
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.
|
@@ -2543,7 +2543,9 @@ class TisSmartTableViewerComponent {
|
|
|
2543
2543
|
this.dataSource.apiSubject.value.forEach(row => {
|
|
2544
2544
|
// ✅ Validate each row before selecting
|
|
2545
2545
|
if (row && ValidationHelper.hasRowKey(row, this.selectedRowKey)) {
|
|
2546
|
-
this.
|
|
2546
|
+
if (!this.isChecked(row)) {
|
|
2547
|
+
this.selection.select(row);
|
|
2548
|
+
}
|
|
2547
2549
|
}
|
|
2548
2550
|
});
|
|
2549
2551
|
}
|