RadzenDataGrid clear filters

Hi,
I have a RadzenDataGrid with FilterTemplate: how can I clear all filters/sortings and all text/selection applied to the FilterTemplate?

The Reset() method seems not to work and I have to do the following:

_dataGrid1.Query.OrderBy = null;
            foreach (var col in _dataGrid1.ColumnsCollection)
            {
                col.FilterValue = null;
            }

in order to clear the filters but when I call the Reload() method the textboxes / checkboxes in the FilterTemplate are still filled with previous values.

Thank you very much

could you include an example of one of your filter templates?

<RadzenDataGrid @ref="_dataGrid1" AllowMultiColumnSorting="true" AllowFiltering="true" AllowPaging="true" AllowSorting="true" AllowColumnResize="true"
                FilterCaseSensitivity="FilterCaseSensitivity.CaseInsensitive" FilterMode="FilterMode.Simple"
                TItem="ItemDTO"
                PageSize="@_pageSize" Data="@_data" LoadData="@LoadData" IsLoading="@_isLoading" Count="@_count">
    <Columns>
<RadzenDataGridColumn Width="100px" TItem="ItemDTO>" Property="Code" Title=""Code" FilterOperator="FilterOperator.Contains" Sortable="true" Filterable="true">
            <FilterTemplate>
                <div class="rz-cell-filter-label" style="height:35px">
                    <RadzenTextBox Change="@(async args => { context.FilterValue = args; await OnChange(args); })" Style="width:100%;"></RadzenTextBox>
                </div>
            </FilterTemplate>
        </RadzenDataGridColumn>
</Columns>
</RadzenDataGrid>

Hi, any news?
Thank you

I'm the only one with this problem?

Hi, it is not possible to set the "col.FilterValue" value.
Try this:
foreach (var col in grd.ColumnsCollection)
{
col.ClearFilters();
}
It works for me.