I am currently facing a challenge in adding a second row with MudChipSet for my Filter within the ToolBarContent of MudTable. My main concern is ensuring that the first row remains unaffected by this addition. Below is my existing code, and I would appreciate any suggestions on how to successfully incorporate a second row with buttons to enable/disable Filter functions.
<MudGrid Spacing="3" Justify="Justify.Center">
<MudItem>
<MudPaper>
<MudTable Items="@_crashInformations" MultiSelection="true" Filter="new Func<CrashInformation,bool>(FilterFunc1)" @bind-SelectedItems="_selectedItems"
Hover="true" Striped="true" Dense="true">
<ToolBarContent>
<MudText Typo="Typo.h6">Test</MudText>
<MudSpacer />
<MudTextField @bind-Value="_searchString" Placeholder="Search" Immediate="true" Adornment="Adornment.Start" AdornmentIcon="@Icons.Material.Filled.Search" IconSize="Size.Medium" Class="mt-0" />
</ToolBarContent>
<HeaderContent>
<MudTh>Analyse</MudTh>
<MudTh>Bearbeiten</MudTh>
<MudTh>Name</MudTh>
<MudTh>Crashpointer</MudTh>
<MudTh>Date</MudTh>
<MudTh>Affected Version</MudTh>
<MudTh>State</MudTh>
<MudTh>Assignee</MudTh>
<MudTh>Fixed Version</MudTh>
<MudTh>Fixed Date</MudTh>
<MudTh>Description</MudTh>
</HeaderContent>
Current representation: https://i.sstatic.net/OCusG.png
Desired outlook: https://i.sstatic.net/FddDw.png