Defines a condition filter for a column on a FlexGrid control.
Condition filters contain two conditions that may be combined using an 'and' or an 'or' operator.
This class is used by the FlexGridFilter class; you will rarely use it directly.
constructor(column: Column): ConditionFilter
Initializes a new instance of the ConditionFilter class.
The column to filter.
Gets a value that indicates whether to combine the two conditions with an AND or an OR operator.
The default value for this property is **true**.
Gets or sets the DataMap used to convert raw values into display values shown when editing this filter.
Gets a value that indicates whether the filter is active.
The filter is active if at least one of the two conditions has its operator and value set to a valid combination.
apply(value: any): boolean
Returns a value indicating whether a value passes this filter.
The value to test.
clear(): void
Clears the filter.