Enable grouping features in DxGrid components

Added ShowGroupPanel, ShowGroupedColumns, and AllowGroup to DxGrid in CatalogsGrid.razor and MassDataGrid.razor for enhanced data grouping. Also set PagerVisible="false" in MassDataGrid.razor to hide pager controls.
This commit is contained in:
OlgunR
2026-02-09 14:03:47 +01:00
parent 59f22be405
commit 8824492057
4 changed files with 12 additions and 0 deletions

View File

@@ -128,6 +128,9 @@ else
<DxGrid Data="@items"
TItem="CatalogReadDto"
KeyFieldName="@nameof(CatalogReadDto.Guid)"
ShowGroupPanel="true"
ShowGroupedColumns="true"
AllowGroup="true"
ShowFilterRow="true"
AllowColumnResize="true"
ColumnResizeMode="GridColumnResizeMode.ColumnsContainer"

View File

@@ -163,6 +163,9 @@ else
<DxGrid Data="@items"
TItem="MassDataReadDto"
KeyFieldName="@nameof(MassDataReadDto.Id)"
ShowGroupPanel="true"
ShowGroupedColumns="true"
AllowGroup="true"
ShowFilterRow="true"
AllowColumnResize="true"
ColumnResizeMode="GridColumnResizeMode.ColumnsContainer"

View File

@@ -87,6 +87,9 @@ else
<DxGrid Data="@items"
TItem="CatalogReadDto"
KeyFieldName="@nameof(CatalogReadDto.Guid)"
ShowGroupPanel="true"
ShowGroupedColumns="true"
AllowGroup="true"
ShowFilterRow="true"
AllowColumnResize="true"
ColumnResizeMode="GridColumnResizeMode.ColumnsContainer"

View File

@@ -163,6 +163,9 @@ else
<DxGrid Data="@items"
TItem="MassDataReadDto"
KeyFieldName="@nameof(MassDataReadDto.Id)"
ShowGroupPanel="true"
ShowGroupedColumns="true"
AllowGroup="true"
ShowFilterRow="true"
AllowColumnResize="true"
ColumnResizeMode="GridColumnResizeMode.ColumnsContainer"