GridFilterItem Interface
Filter item definition interface.
Import
import { GridFilterItem } from '@mui/x-data-grid-premium';
// or
import { GridFilterItem } from '@mui/x-data-grid-pro';
// or
import { GridFilterItem } from '@mui/x-data-grid';
Properties
Name | Type | Description |
---|---|---|
columnField | string | The column from which we want to filter the rows. |
id? | number | string | Must be unique. Only useful when the model contains several items. |
operatorValue? | string | The name of the operator we want to apply. Will become required on @mui/x-data-grid@6.X . |
value? | any | The filtering value. The operator filtering function will decide for each row if the row values is correct compared to this value. |