ColumnFilter
Setting information related to column filtering
Signature:
export interface ColumnFilterRemarks
Used in filter-related methods such as GridBase.onFilteringChanged or GridBase.getColumnFilter().
When it is a format for setting, such as GridBase.setColumnFilters(), you only need to enter the information you want.
Events
| Property | Type | Description |
|---|---|---|
| callback | FilterCallback | Callback to determine filter |
Properties
| Property | Type | Description |
|---|---|---|
| active | boolean | Whether filter is activated |
| criteria | string | expression |
| description | string | Description |
| name | string | name |
| tag | string | Tags |
| text | string | String displayed in filter selection box |
| visible | boolean | Visibility |
Events Desc
callback
Callback to determine filter
Remarks:
true: When filtering, false: When filtering is excluded.
Properties Desc
active
Whether filter is activated
Type - boolean
criteria
expression
Type - string
Remarks:
Either criteria or callback must be specified.
description
explanation
Type - string
name
name
Type - string
tag
tag
Type - string
text
String displayed in filter selection box
Type - string
Remarks:
If null, name is displayed.
visible
Visibility
Type - boolean