NumericFilterCellComponent
Represents a numeric filter cell. Use this component to filter numeric values in the TreeList. See the article about the built-in filter components.
Definition
Package:@progress/kendo-angular-treelist
Selector:kendo-treelist-numeric-filter-cell
Syntax:
<kendo-treelist-column field="ProductName" title="Product Name">
<ng-template kendoTreeListFilterCellTemplate let-filter let-column="column">
<kendo-treelist-numeric-filter-cell
[column]="column"
[filter]="filter">
</kendo-treelist-numeric-filter-cell>
</ng-template>
</kendo-treelist-column>
Inputs
The column with which the filter is associated.
decimals
number
Specifies the number precision applied to the component value when it is focused. If the user enters a number with a greater precision than is currently configured, the component value is rounded.
The current root filter.
filterDelay
number
Sets the delay time (in milliseconds) before the filter value is submitted.
A value of 0 means no delay.
500
max
number
Specifies the greatest value that is valid.
min
number
Specifies the smallest value that is valid.
operator
string
The default filter operator.
"eq"
placeholder
string
The placeholder text for the filter input.
showOperators
boolean
Shows or hides the drop-down filter operators.
true
spinners
boolean
Specifies whether the Up and Down spin buttons will be rendered.
true
step
number
Specifies the value that is used to increment or decrement the component value.
1
Fields
currentFilter
FilterDescriptor
The current filter for the associated column field.
currentOperator
string
The current filter operator for the associated column field.
format
string
Specifies the number format used when the component is not focused.
By default, the column.format value is used (if set).