I have a column in a Radzen DataGrid which Property is integer, the content I display is of type string. Everything is displayed correct, but the filter only accepts integer values. How can I filter by the displayed content of type string:
<RadzenDataGridColumn TItem="Service" Width="60px" Property="ServiceType" Title="Service Type">
<Template Context="context">
@getServiceAsString(context.ServiceType)
</Template>
</RadzenDataGridColumn>
These are the integer values and the corresponding string values
0: M1001
1: R2002
2: R2003
3: F3001
and so on