-
-
Notifications
You must be signed in to change notification settings - Fork 150
Closed
Labels
questionFurther information is requestedFurther information is requested
Description
Custom filter component:
filterComponent: ({ columnDef, onFilterChanged }) => (
<TextField
variant="standard"
onChange={(e: React.ChangeEvent<HTMLInputElement>) => {
onFilterChanged(columnDef.tableData.id, e.target.value); // send here the operator
}}
/>
),Filter object in query for async pagination:
{ column: 'some_column', operator: '=', value: 'something' } // <-- The operator is always '='Question
Is there a way to change the operator for something else, like <, >, ~=, etc?
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
questionFurther information is requestedFurther information is requested