Hi, I'm having this issue when trying to user blazor server Grid with the default template in the FetchData page
I assigned forecasts to the grid's datasource and enable the excel filter on the grid.
When i click the button on any column i get an error.
I'm using latest nuget package.
Search function is working fine
The code i used for the grid is this
<SfGrid TValue="object" AllowReordering="true" DataSource="forecasts" AllowPaging="true" AllowFiltering="true" AllowExcelExport="true" Toolbar=@Tool>
<GridFilterSettings Type="Syncfusion.Blazor.Grids.FilterType.Excel"></GridFilterSettings>
<GridEvents TValue="object" OnActionFailure="@ActionFailure"></GridEvents>
<GridColumns>
<GridColumn Field="Date" HeaderText="Date" Type="ColumnType.String" Width="120"></GridColumn>
<GridColumn Field="Summary" HeaderText="Summary" Type="ColumnType.String" Width="120"></GridColumn>
<GridColumn Field="TemperatureC" HeaderText="TemperatureC" Type="ColumnType.String" Width="120"></GridColumn></GridColumns>
</SfGrid>