NumericFilterMenuComponent
Represents a numeric filter-menu component. Use this component to filter numeric values in the Grid.
Definition
Package:@progress/kendo-angular-grid
Selector:kendo-grid-numeric-filter-menu
Syntax:
<kendo-grid-column field="UnitPrice">
<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>
Inputs
Specifies the column for this filter.
decimals
number
Sets the number precision for the value when focused. If the user enters a number with greater precision, the value is rounded.
extra
boolean
Determines if the inputs for the second criteria are displayed.
true
extraPlaceholder
string
Sets the placeholder text for the extra filter input.
Applies when extra is set to true.
''
Represents the current filter descriptor for the menu.
filterDelay
number
Determines the delay in milliseconds before creating a filter descriptor based on the value.
A value of 0 means no delay.
500
Represents the FilterService instance that handles changes in the filter descriptor.
max
number
Sets the greatest valid value.
min
number
Sets the smallest valid value.
operator
string
Sets the default filter operator.
"eq"
placeholder
string
The placeholder text for the filter input.
''
spinners
boolean
When true, shows the Up and Down spin buttons.
true
step
number
Sets the value used to increment or decrement the component value.
1
Fields
currentFilter
FilterDescriptor
Gets the current filter for the column field.
currentOperator
string
Gets the current filter operator for the column field.
format
string
Gets the number format used when the component is not focused.
Uses column.format if set.