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!

0
Votes

  We are having issues getting the excel filter to populate the filter the values for a grid foreign key column.  Its only grabbing distinct values for some sub population of the data grid items.



We tried setting the filter choice count but that just changed the number distinct choices that get loaded into the filter menu for other fields but had no bearing on foreign key grid column



        public async Task ActionBeginHandler(ActionEventArgs<AppReviewItems_View> args)
        {
            if (args.RequestType == Syncfusion.Blazor.Grids.Action.FilterBeforeOpen)
            {


                args.FilterChoiceCount = 10000;


            }
        }