Welcome to the Flutter feedback portal. We’re happy you’re here! If you have feedback on how to improve the Flutter, we’d love to hear it!>
Thanks for joining our community and helping improve Syncfusion products!
I made an example here:
https://github.com/ben-pac/flutter_sf_data_grid_filter_error
When I select a value in the DropdownMenu in the AppBar, I set a filter based on the possible values in the first column "group":
if (cellValue is Comparable) {
return cellValue.compareTo(filterValue);
}