Welcome to the Blazor feedback portal. We’re happy you’re here! If you have feedback on how to improve the Blazor, we’d love to hear it!>
Thanks for joining our community and helping improve Syncfusion products!
Hello!
I found that in any SfGrid I create, the function of searching not work, always not find any data.
this is an actual SfGrid that is not working:
<SfGrid TValue="SamplingTypeCombination" DataSource="_viewModel.FilteredSamplingTypeCombination" RowHeight="25" AllowPaging="true" AllowSelection="true" AllowFiltering="true" Toolbar=@(new List<string>() { "Search" })> <GridFilterSettings Type ="Syncfusion.Blazor.Grids.FilterType.Excel"></GridFilterSettings> <GridColumns> <GridColumn Field="Type.Type" HeaderText="Type" Width="auto"></GridColumn> <GridColumn Field="SubType.SubType" HeaderText="SubType" Width="auto"></GridColumn> <GridColumn Field="SubType.Description" HeaderText="Description" Width="auto"></GridColumn> <GridColumn Field="Definition" HeaderText="Definition" Width="auto"></GridColumn> <GridColumn Field="Level" HeaderText="Level" Width="auto"></GridColumn> <GridColumn Field="ApqpPhase" HeaderText="ApqpPhase" Width="auto"></GridColumn> </GridColumns> </SfGrid>
Thank you!