I tried the demo code on Blazor DataGrid - Custom Filtering | Free UI Components by Radzen
and added a template with my custom control
<RadzenGrid Data="@(employees.Where(e => e.TitleOfCourtesy == currentTOC))"
AllowFiltering="true" AllowPaging="true" AllowSorting="true" TItem="Employee" ColumnWidth="200px">
the rows can not be expanded with the button on the left side. as soon as i remove the filter condition:
<RadzenGrid Data="@(employees)"
AllowFiltering="true" AllowPaging="true" AllowSorting="true" TItem="Employee" ColumnWidth="200px">
expansion of the subitem works. can we use filter conditions and expansion template together in this control?