I added a simple datagrid in the boiler plate Visual Studio blazor project and when I drag a column to enable grouping, it will group properly but I can't change the way it sorts (ascending and descending). The arrow will show up next to the label but clicking it does nothing. Below is my datagrid code:
<SfGrid AllowGrouping="true" AllowPaging="true" DataSource="@Orders" Height="100%" Width="100%" >
<GridGroupSettings Columns="@test"></GridGroupSettings>
<GridColumns>
<GridColumn Field=@nameof(Order.ReleaseName) HeaderText="Release Name" Type="ColumnType.String"></GridColumn>
<GridColumn Field=@nameof(Order.ArtistName) HeaderText="Artist Name" Type="ColumnType.String"></GridColumn>
<GridColumn Field=@nameof(Order.DateSubmitted) Format="d" HeaderText="Date Submitted" Type="ColumnType.Date"></GridColumn>
</GridColumns>
</SfGrid>
@test is referencing the DateSubmitted property.