We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fa74cdf commit 0eb036bCopy full SHA for 0eb036b
1 file changed
packages/iris-grid/src/IrisGridRenderer.ts
@@ -187,6 +187,12 @@ class IrisGridRenderer extends GridRenderer {
187
return;
188
}
189
190
+ // This assumes that the engine puts the grouped columns at the start of the
191
+ // model, so model and visible index match for grouped columns. If we ever
192
+ // add freeze support for tree tables or allow moving the grouped columns,
193
+ // this assumption may no longer hold true. If such a change occurs, we'll
194
+ // need to revisit this since a single vertical divider may no longer make
195
+ // sense.
196
const lastVisibleGroupColumnIndex = groupedColumns.length - 1;
197
198
const columnX = allColumnXs.get(lastVisibleGroupColumnIndex);
0 commit comments