New to Kendo UI for Angular? Start a free 30-day trial
FilterCellOperatorsComponent
Updated on Oct 30, 2025
Represents a component that displays filter operators. Use this component to show a drop-down list of filter operators and a clear button.
html
<kendo-grid [data]="gridData">
  <kendo-grid-column field="ProductName">
    <ng-template kendoGridFilterCellTemplate let-filter let-column="column">
      <input />
      <kendo-grid-filter-cell-operators
        [operators]="[{text: 'Equals', value: 'eq'}]">
      </kendo-grid-filter-cell-operators>
    </ng-template>
  </kendo-grid-column>
<kendo-grid>Selector
kendo-grid-filter-cell-operators
Inputs
| Name | Type | Default | Description | 
|---|---|---|---|
| column | 
 | Sets the column instance for which the filter operators are displayed. | |
| operators | 
 | Specifies the filter operators to display. | |
| showButton | 
 | Determines if the Clear button is displayed. | |
| showOperators | 
 | 
 | Determines if the list of operators is displayed. | 
| value | 
 | Represents the selected operator value. | 
Events
| Name | Type | Description | 
|---|---|---|
| clear | 
 | Fires when the Clear button is clicked. | 
| valueChange | 
 | Fires when the operator value changes. |