FilterOperatorSelect

Description

The filter operator select control that is displayed when a column is configured with more then one filter operator.

See

props

operators

operators: {
  type: PropType<FilterOperator[]>;
  required: true;
};

Description

The FilterOperator values configured on the Column.

Type declaration

MemberType
typePropType<FilterOperator[]>
requiredtrue

modelValue

modelValue: {
  type: PropType<FilterOperator>;
  required: false;
  default: FilterOperator;
};

Description

The selected FilterOperator.

Default Value

FilterOperator.equals

Type declaration

MemberType
typePropType<FilterOperator>
requiredfalse
defaultFilterOperator

emits

update:modelValue()

update:modelValue(operator): boolean

Parameters

ParameterTypeDescription
operatorFilterOperatorThe new FilterOperator state.

Returns

boolean

Description

Event emitted when the FilterOperator state has been updated.