NumericFilterCellComponent
Represents a numeric filter cell.
<kendo-grid-column field="ProductName" title="Product Name">
<ng-template kendoGridFilterCellTemplate let-filter let-column="column">
<kendo-grid-numeric-filter-cell
[column]="column"
[filter]="filter">
</kendo-grid-numeric-filter-cell>
</ng-template>
</kendo-grid-column>
Selector
kendo-grid-numeric-filter-cell
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.
filter
The current root filter.
filterDelay
number
Determines the delay time (in milliseconds) before the filter value is submitted.
A value of 0
indicates no delay. The default value is 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. Defaults to eq
.
showOperators
boolean
Determines if the drop-down filter operators will be displayed.
The default value is true
.
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).
Fields
currentFilter
FilterDescriptor
The current filter for the associated column field.
currentOperator
string
The current filter operator for the associated column field.