• 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
    • ListBoxupdated
    • 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

Operators

Represents the operators for the TextFilter, NumericFilter, DateFilter and BooleanFilter components.

The text field of each operator object will be resolved according to the localization messages.

NameTypeDefaultDescription

boolean

FilterOperator[]

An array containing the operators for the BooleanFilter component.

The operators are:

  • { text: 'filter.eqOperator', operator: 'eq' }
  • { text: 'filter.notEqOperator', operator: 'neq' }

date

FilterOperator[]

An array containing the operators for the DateFilter component.

The operators are:

  • { text: 'filter.eqOperator', operator: 'eq' }
  • { text: 'filter.notEqOperator', operator: 'neq' }
  • { text: 'filter.afterOrEqualOperator', operator: 'gte' }
  • { text: 'filter.afterOperator', operator: 'gt' }
  • { text: 'filter.beforeOperator', operator: 'lt' }
  • { text: 'filter.beforeOrEqualOperator', operator: 'lte' }
  • { text: 'filter.isNullOperator', operator: 'isnull' }
  • { text: 'filter.isNotNullOperator', operator: 'isnotnull' }

numeric

FilterOperator[]

An array containing the operators for the NumericFilter component.

The operators are:

  • { text: 'filter.eqOperator', operator: 'eq' }
  • { text: 'filter.notEqOperator', operator: 'neq' }
  • { text: 'filter.gteOperator', operator: 'gte' }
  • { text: 'filter.gtOperator', operator: 'gt' }
  • { text: 'filter.lteOperator', operator: 'lte' }
  • { text: 'filter.ltOperator', operator: 'lt' }
  • { text: 'filter.isNullOperator', operator: 'isnull' }
  • { text: 'filter.isNotNullOperator', operator: 'isnotnull' }

text

FilterOperator[]

An array containing the operators for the TextFilter component.

The operators are:

  • { text: 'filter.containsOperator', operator: 'contains' }
  • { text: 'filter.notContainsOperator', operator: 'doesnotcontain' }
  • { text: 'filter.eqOperator', operator: 'eq' }
  • { text: 'filter.notEqOperator', operator: 'neq' }
  • { text: 'filter.startsWithOperator', operator: 'startswith' }
  • { text: 'filter.endsWithOperator', operator: 'endswith' }
  • { text: 'filter.isNullOperator', operator: 'isnull' }
  • { text: 'filter.isNotNullOperator', operator: 'isnotnull' }
  • { text: 'filter.isEmptyOperator', operator: 'isempty' }
  • { text: 'filter.isNotEmptyOperator', operator: 'isnotempty' }

Constructors

Operators

()

In this article

Not finding the help you need?