Fixed #3781 - DataTable: Group Rows do not span all Columns with Selection Mode set and group-by not in the Column list

This commit is contained in:
Tuğçe Küçükoğlu 2023-03-27 14:47:48 +03:00
parent f629d7809a
commit 129b15765d

View file

@ -569,6 +569,7 @@ export default {
let hiddenColLength = 0;
this.columns.forEach((column) => {
if (this.columnProp(column, 'selectionMode') === 'single') hiddenColLength--;
if (this.columnProp(column, 'hidden')) hiddenColLength++;
});