NumericFilterMenuComponent
Represents a numeric-filter menu component.
<kendo-grid-column field="UnitPrice" title="Unit Price">
<ng-template kendoGridFilterMenuTemplate let-filter let-column="column" let-filterService="filterService">
<kendo-grid-numeric-filter-menu
[column]="column"
[filter]="filter"
[filterService]="filterService"
>
</kendo-grid-numeric-filter-menu>
</ng-template>
</kendo-grid-column>
Selector
kendo-grid-numeric-filter-menu
Inputs
column
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 will displayed.
filterService
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. Defaults to eq
.
spinners
boolean
Specifies whether the Up and Down spin buttons will be rendered.
step
number
Specifies the value that is used to increment or decrement the component value.
format
string
Specifies the number format used when the component is not focused.
By default, the column.format
value is used (if set).
Specifies the number format used when the component is not focused.
By default, the column.format
value is used (if set).
filter
object
The current menu filter.
Fields
currentFilter
FilterDescriptor
The current filter for the associated column field.
currentOperator
string
The current filter operator for the associated column field.
Methods
logicChange
Parameters
value
"and" | "or"