I am remotely retrieving my paged data that is displayed in my Telerik Blazor UI Grid from an OData ASP.NET Core 3.1 web API
I have several fields that are enums in each of my records. I would like to have the columns that have enum based properties display a combobox in the FilterRow so I can select from the desired enum options to filter my grid.
For example,
My OData API metadata shows the enum values as;
<p> <Property Name="AccountType" Type="API.Server.Enums.AccountTypes" Nullable="false" /></p><p></p>
And so when I query the API using Postman, I need to use the string .
<p>..?$filter=AccountType eq EII.CDAPI.Server.Enums.AccountTypes'Customer' </p><p></p>
So, I assume that the filter you would generate from a FilterRow ComboBox selection would have similar syntax.
Is this possible?