From 71ecb86dfa9a36518e114ab5a731131a830f1cb0 Mon Sep 17 00:00:00 2001 From: Mirco Kocher Date: Thu, 2 Oct 2025 15:57:27 +0200 Subject: [PATCH] Calculate checkable column for row icon column - The row icon column is always the first column with one exception: -- if there is a checkable column, then it is the second column - To correctly insert the gui only column the columns must be calculated 435853 --- eclipse-scout-core/src/table/Table.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/eclipse-scout-core/src/table/Table.ts b/eclipse-scout-core/src/table/Table.ts index 6e591af59d2..dfdd44a827d 100644 --- a/eclipse-scout-core/src/table/Table.ts +++ b/eclipse-scout-core/src/table/Table.ts @@ -447,6 +447,7 @@ export class Table extends Widget implements TableModel, Filterable { // Add gui only row icon column at the beginning if (this.rowIconVisible) { + this._calculateCheckableColumn(); this._insertRowIconColumn(); }