GridFilterItem API
Extended documentation for the GridFilterItem interface with detailed information on the module's properties and available APIs.
Demos
Import
import { GridFilterItem } from '@mui/x-data-grid';
// or
import { GridFilterItem } from '@mui/x-data-grid-pro';
// or
import { GridFilterItem } from '@mui/x-data-grid-premium';Filter item definition interface.
The name of the operator we want to apply. A custom operator is supported by providing any string value.
Type:| 'contains'
| 'doesNotContain'
| 'equals'
| 'doesNotEqual'
| 'startsWith'
| 'endsWith'
| '='
| '!='
| '>'
| '>='
| '<'
| '<='
| 'is'
| 'not'
| 'after'
| 'onOrAfter'
| 'before'
| 'onOrBefore'
| 'isEmpty'
| 'isNotEmpty'
| 'isAnyOf'
| (string & {})