New to Kendo UI for Angular? Start a free 30-day trial

FilterCellOperatorsComponent

Represents a component which accommodates the filter operators.

<kendo-treelist ...>
  <kendo-treelist-column field="ProductName">
    <ng-template kendoTreeListFilterCellTemplate let-filter let-column="column">
      <input />
      <kendo-treelist-filter-cell-operators
        [operators]="[{text: 'Equals', value: 'eq'}]">
      </kendo-treelist-filter-cell-operators>
    </ng-template>
  </kendo-treelist-column>
</kendo-treelist>

Selector

kendo-treelist-filter-cell-operators

Inputs

NameTypeDefaultDescription

column

ColumnComponent

The TreeList column which the filter operators are associated with.

operators

{ text: string; value: string; }[]

The filter operators that will be displayed.

showButton

boolean

Determines if the Clear button will be displayed.

showOperators

boolean

true

Determines if the list of operators will be displayed.

value

string

The selected operator.

Events

NameTypeDescription

clear

EventEmitter<undefined>

Fires when the Clear button is clicked.

valueChange

EventEmitter<string>

Fires when the operator is selected.

In this article

Not finding the help you need?