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?