Constructor
new module:ct-grid /Grid Column Filter(filter Field, filter Type, filter Value)
Constructs a GridColumnFilter
tuple.
Parameters:
Name | Type | Description |
---|---|---|
filterField |
String | The field to perform the filter on. |
filterType |
int | The type of filter to be applied. |
filterValue |
String | The value to actually filter on. |
Members
(static, readonly) EXACT _MATCH :int
Constant corresponding to the exact match filter type.
Type:
- int
(static, readonly) GREATER _THAN :int
Constant corresponding to the greater than filter type.
Type:
- int
(static, readonly) GREATER _THAN _OR _EQUAL :int
Constant corresponding to the greater than or equal filter type.
Type:
- int
(static, readonly) LESS _THAN :int
Constant corresponding to the less than filter type.
Type:
- int
(static, readonly) LESS _THAN _OR _EQUAL :int
Constant corresponding to the less than or equal filter type.
Type:
- int
(static, readonly) NOT _EQUAL :int
Constant corresponding to the not equal filter type.
Type:
- int
(static, readonly) NUMERIC _MATCH :int
Constant corresponding to the numeric match filter type.
Type:
- int
(static, readonly) NUMERIC _NOT _MATCH :int
Constant corresponding to the numeric not match filter type.
Type:
- int
(static, readonly) PARTIAL _MATCH :int
Constant corresponding to the partial match filter type.
Type:
- int
(static, readonly) PARTIAL _NOT _EQUAL :int
Constant corresponding to the partial not equal filter type.
Type:
- int
(static, readonly) REGULAR _EXPRESSION :int
Constant corresponding to the regular expression filter type.
Type:
- int
(static, readonly) REGULAR _EXPRESSION _CASE _INSENSITIVE :int
Constant corresponding to the regular expression filter type.
Type:
- int
(static, readonly) TEXT _GREATER _THAN :int
Constant corresponding to the text greater than filter type.
Type:
- int
(static, readonly) TEXT _GREATER _THAN _OR _EQUAL :int
Constant corresponding to the text greater than or equal filter type.
Type:
- int
(static, readonly) TEXT _LESS _THAN :int
Constant corresponding to the text less than filter type.
Type:
- int
(static, readonly) TEXT _LESS _THAN _OR _EQUAL :int
Constant corresponding to the text less than or equal filter type.
Type:
- int
(static, readonly) WILDCARD :int
Constant corresponding to the wild card filter type.
Type:
- int
(static, readonly) WILDCARD _CASE _SENSITIVE :int
Constant corresponding to the wild card filter type.
Type:
- int
filter Field :String
The field to perform the filter on.
Type:
- String
filter Type :int
The type of filter to be applied — one of:
LESS_THAN
,
GREATER_THAN
,
EXACT_MATCH
,
NOT_EQUAL
,
NUMERIC_MATCH
,
NUMERIC_NOT_MATCH
,
PARTIAL_MATCH
,
WILDCARD
,
WILDCARD_CASE_SENSITIVE
,
REGULAR_EXPRESSION
or
REGULAR_EXPRESSION_CASE_INSENSITIVE
.
Type:
- int
filter Value :String
The value to actually filter on.
Type:
- String