Posted 8 May 2023, 7:31 am EST - Updated 8 May 2023, 9:04 am EST
Hi,
I have the following problem:
-
I can manually filter he column by Text or by Value
-
Ber Button click I apply a column filter to that column within the code like
ConditionFilter filterNoAtc = new ConditionFilter();
filterNoAtc.Condition1.Operator = ConditionOperator.DoesNotContain;
filterNoAtc.Condition1.Parameter = "ATC";
flexGridActualInspects.Cols["ATC_NR"].Filter = filterNoAtc;
flexGridActualInspects.ApplyFilters();
- Then I clear the filter in code like
flexGridActualInspects.ClearFilter();
or
flexGridActualInspects.FilterDefinition = "<ColumnFilters />";
- When I now want to filter manually again, I can not switch between TextFilter and ValueFilter like before I applied the filter (Step 2).
Is there another way to clear the filters so both filter methods are working again?
I’m using Version 4.8.20231.596
I attached 3 screenshots showing the steps and to visualize what I mean.
Any help is appreciated.
Regards…Michael