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!
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;
}
}