FilterCellOperatorsComponent
Component
Represents a component that displays filter operators for the TreeList filter row. Use this component to let users select filter operators for a column.
Definition
Package:@progress/kendo-angular-treelist
Selector:kendo-treelist-filter-cell-operators
Syntax:
html
<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>
Inputs
The TreeList column which the filter operators are associated with.
operators
{ text: string; value: string }[]
The filter operators that will be displayed.
Default:
[]
showButton
boolean
Determines if the Clear button will be displayed.
showOperators
boolean
Determines if the list of operators will be displayed.
Default:
true
value
string
The selected operator.
Events
clear
EventEmitter<undefined>
Fires when the Clear button is clicked.
valueChange
EventEmitter<string>
Fires when the operator is selected.