DynamicTableViewFilter class

The DynamicTableViewFilter class is a helper class for the DynamicTableView class, that defines a filter for selecting the rows to be displayed.

Constructor

public DynamicTableViewFilter(const string &columnId,
                                DynamicTableViewFilterOp op,
                                anytype refValue,
                                bool orNext = false)

Parameter

Parameter Description
columnId ID of the column to filter.
op Operator used to compare the column's value to the reference value.
refValue Reference value for comparison.
orNext

Defines how this filter will be combined with the following filter by passesAll().

For this, "true" means OR, "false" means AND. Default value = "false"