NumericFilterMenuComponent
Represents the Kendo UI numeric-filter menu component for the TreeList. Use this component to filter numeric values using a filter menu popup. See example.
Definition
Package:@progress/kendo-angular-treelist
Selector:kendo-treelist-numeric-filter-menu
Syntax:
<kendo-treelist-column field="UnitPrice">
<ng-template kendoTreeListFilterMenuTemplate let-filter let-column="column" let-filterService="filterService">
<kendo-treelist-numeric-filter-menu
[column]="column"
[filter]="filter"
[filterService]="filterService">
</kendo-treelist-numeric-filter-menu>
</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.
extra
boolean
Determines if the inputs of second criteria are displayed.
true
extraPlaceholder
string
The placeholder text for the extra filter input. Applies when extra is set to true.
''
The current menu filter.
filterDelay
number
Determines the delay (in milliseconds) before creating a filter descriptor based on the value. A value of 0 indicates no delay.
500
The FilterService instance which is responsible for handling the changes in the filter descriptor.
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.
''
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).