New to Kendo UI for Angular? Start a free 30-day trial
FilterCellOperatorsComponent
Represents a component which accommodates the filter operators.
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>
Selector
kendo-treelist-filter-cell-operators
Inputs
Name | Type | Default | Description |
---|---|---|---|
column |
|
The TreeList column which the filter operators are associated with. | |
operators |
|
The filter operators that will be displayed. | |
showButton |
|
Determines if the Clear button will be displayed. | |
showOperators |
|
|
Determines if the list of operators will be displayed. |
value |
|
The selected operator. |
Events
Name | Type | Description |
---|---|---|
clear |
|
Fires when the Clear button is clicked. |
valueChange |
|
Fires when the operator is selected. |