lists/src/filter2/types.ts
Represents the filter information of a single column.
Properties |
Methods |
apply | ||||||||
apply(predicates: FilterPredicate[])
|
||||||||
Applies the provided filter predicates to this column.
Parameters :
Returns :
void
|
clear |
clear()
|
Clears all filter predicates for this column.
Returns :
void
|
domain |
domain:
|
Type : Domain
|
If this filter is of 'domain' type, this represents the domain with all available filter options. |
isActive |
isActive:
|
Type : boolean
|
Returns whether or not this column is currently being filtered. |
isActive$ |
isActive$:
|
Type : Observable<boolean>
|
Represents a stream that emits when the column's filter becomes active or inactive. |
predicates |
predicates:
|
Type : FilterPredicate[]
|
Returns the currently applied filter predicates for this column. |
showAllLabel |
showAllLabel:
|
Type : string
|
Represents the label that may be shown to drop the filter. |
showUnknownLabel |
showUnknownLabel:
|
Type : string
|
Represents the label to show for toggling the inclusion of unknown values. |
title |
title:
|
Type : string
|
Represents the title text for this filter. |