• What is KendoReact
  • Getting Started
  • Server Components
  • Components
    • Animation
    • Barcodes
    • Buttons
    • Chartsupdated
    • Common Utilities
    • Conversational UIupdated
    • Data Gridupdated
    • Data Query
    • Data Tools
    • Date Inputs
    • Date Math
    • Dialogs
    • Drawing
    • Dropdownsupdated
    • Editor
    • Excel Export
    • File Saver
    • Formupdated
    • Ganttupdated
    • Gauges
    • Indicators
    • Inputsupdated
    • Labels
    • Layoutupdated
    • ListBox
    • ListView
    • Map
    • Notification
    • OrgChartnew
    • PDF Processing
    • PDFViewer
    • PivotGrid
    • Popup
    • Progress Bars
    • Ripple
    • Scheduler
    • ScrollView
    • Sortable
    • Spreadsheetupdated
    • TaskBoard
    • Tooltips
    • TreeList
    • TreeViewupdated
    • Upload
  • Sample Applications
  • Styling & Themes
  • Common Features
  • Project Setup
  • Knowledge Base
  • Changelog
  • Updates
  • Troubleshooting

GridFilterCellProps

The props of the GridFilterCell component (more information and example).

NameTypeDefaultDescription

ariaLabel?

string

Accessible label of the filter.

booleanValues

GridFilterOperator[]

The list of values for the Boolean filter.

field?

string

The column field in which the cell is located.

filterType

"boolean" | "text" | "numeric" | "date"

The type of the filter. Determines which editor will be rendered for filtering.

onChange

(event: { operator: string | Function; syntheticEvent: SyntheticEvent<any>; value: any; }) => void

The method that will be called if the cell needs to inform its parent Grid about a change.

operator?

string | Function

The operator that will be used for the cell filtering.

operators

GridFilterOperator[]

The list of the default operators for the current filter type.

render?

(row: ReactElement<any>, dataItem: GridFilterCellProps) => ReactNode

A function for overriding the default rendering of the filter cell.

size?

"null" | "small" | "large" | "medium"

medium

Configures the size of the cell.

The available options are:

  • small
  • medium
  • large
  • null—Does not set a size className.

title?

string

The title which will be set to the input element in the filter cell.

value

any

The value of the cell.