Initializes a new instance of the ColumnFilter class.
The FlexGridFilter that owns this column filter.
The Column to filter.
Gets the Column being filtered.
Gets the ConditionFilter in this ColumnFilter.
Gets or sets the DataMap used to convert raw values into display values shown when editing this filter.
The example below assigns a DataMap to Boolean column filters so the filter editor displays 'Yes' and 'No' instead of 'true' and 'false':
import { FlexGridFilter } from '@grapecity/wijmo.grid.filter';
var filter = new FlexGridFilter(grid),
map = new wijmo.grid.DataMap([
{ value: true, caption: 'Yes' },
{ value: false, caption: 'No' },
], 'value', 'caption');
for (var c = 0; c < grid.columns.length; c++) {
if (grid.columns[c].dataType == wijmo.DataType.Boolean) {
filter.getColumnFilter(c).dataMap = map;
}
}
Gets or sets the types of filtering provided by this filter.
Setting this property to null causes the filter to use the value defined by the owner filter's FlexGridFilter.defaultFilterType property.
Gets a value that indicates whether the filter is active.
Gets the ValueFilter in this ColumnFilter.
Gets a value that indicates whether a value passes the filter.
The value to test.
Clears the filter.
Returns true if this object supports a given interface.
Name of the interface to look for.
Defines a filter for a column on a FlexGrid control.
The ColumnFilter contains a ConditionFilter and a ValueFilter; only one of them may be active at a time.
This class is used by the FlexGridFilter class; you rarely use it directly.