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!

  • Check out the features or bugs others have reported and vote on your favorites. Feedback will be prioritized based on popularity.
  • If you have feedback that’s not listed yet, submit your own.

Thanks for joining our community and helping improve Syncfusion products!

1
Vote

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:

Snippet
<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!