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
Member | Type |
---|---|
type | PropType <FilterOperator []> |
required | true |
modelValue
modelValue: {
type: PropType<FilterOperator>;
required: false;
default: FilterOperator;
};
Description
The selected FilterOperator.
Default Value
FilterOperator.equals
Type declaration
Member | Type |
---|---|
type | PropType <FilterOperator > |
required | false |
default | FilterOperator |
emits
update:modelValue()
update:modelValue(operator): boolean
Parameters
Parameter | Type | Description |
---|---|---|
operator | FilterOperator | The new FilterOperator state. |
Returns
boolean
Description
Event emitted when the FilterOperator state has been updated.