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

If you´re using SfGrid with DataManager on adapter type WebAPI and you try to use advanced text filter options on nested property it generates a wrong filter query on final request.


On simple property this works during typing in dialog and press OK:

Empty

$filter=(startswith(tolower(Name),'a'))


On nested properties this will ALSO work during typing in dialog:
$filter=(startswith(tolower(Nested/Name),'a'))

But if you press OK than the DataManager generates a WRONG filter query:
$filter=
(startswith(Parent/Name,null))


Same bug appears on each of this filter types: starts with/ends with/contains