When I define the FilterProperty in RadzenDataGridColumn and then clear the filter, the FilterOperator value becomes null.

Hello, I have an issue with RadzenDataGrid filtering.

When I define the FilterProperty in RadzenDataGridColumn and then clear the filter, the FilterOperator value becomes null.
private async Task ClearGridFilters()
{
Grid.Reset(false, false);

    Grid.ColumnsCollection.ToList().ForEach(delegate (RadzenDataGridColumn<TIListEntity> c)
    {
        c.ClearFilters();
    });
    await Grid.Reload();
}

This is an undesirable situation for the user. How can I solve this problem?

If you believe you've found an issue and you have a fix feel free to submit pull request - if it works properly we will merge it.