'Radzen DataGridColumn filter on Enum string representation

I have a Datagrid that use the string representation of an enum to display the data. The filter on String or Date field works well, but not on this enum field. enum_row_capture

<RadzenDataGrid AllowFiltering="true"  FilterMode="FilterMode.Simple" PageSize="100" AllowPaging="true"
                AllowSorting="true"
                FilterCaseSensitivity="FilterCaseSensitivity.CaseInsensitive"
                Data="@dataList" TItem="TableName">
    <Columns>
        <RadzenDataGridColumn TItem="TableName" Property="Status" Title="Status">
            <Template Context="dataItem">
                <TransactionStatus Status="@dataItem.Status"/>
            </Template>
        </RadzenDataGridColumn>
        <RadzenDataGridColumn TItem="TableName" Property="myDate" Title="Date" />
    </Columns>
</RadzenDataGrid>

The value of Status is like 0, 1, 2...
How to filter by just typing the textuel representation of the enum value as displayed in the grid ?



Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source