enum sap.ui.model.FilterType

Control sample: sap.ui.model.FilterType
Visiblity: public
Available since: N/A
Module: sap/ui/model/FilterType
Application Component: CA-UI5-COR

Enumeration of the possible filter types.

Each list binding maintains two separate lists of filters: one for filters defined by the control that owns the binding, and another list for filters that an application can define in addition. When executing the filter operation, both sets of filters are combined.

See method ListBinding#filter on how to specify the filter type. When no filter type is given to that method, the behavior depends on the specific model implementation and should be documented in the API reference for that model.


Properties Overview

Node Description
sap.ui.model.FilterType.Application

Filters which are provided by the application.

sap.ui.model.FilterType.Control

Filters which are set by a control itself.

Some controls implement filter capabilities as part of their behavior, e.g. table columns or facet filters. When such controls define filters for a binding, they should use filter type Control to keep their filters separated from filters that the application might define in addition.