Skip to content

Commit 0ab76d5

Browse files
committed
DataGrid GroupFooterTemplate wrong rendering when ShowGroupExpandColumn=false
1 parent 3dea0a5 commit 0ab76d5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Radzen.Blazor/RadzenDataGridGroupFooterRow.razor

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515

1616
}
1717
}
18-
@for (var j = 0; j < GetLevel(); j++)
18+
@for (var j = 0; j < GetLevel() + (Grid.ShowGroupExpandColumn ? 0 : -1); j++)
1919
{
2020
<td class="rz-col-icon">
2121
<span class="rz-column-title"></span>

0 commit comments

Comments
 (0)