New to Kendo UI for AngularStart a free 30-day trial

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:

html
<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.

Default:

true

Sets the placeholder text for the extra filter input. Applies when extra is set to true.

Default:

''

Represents the current filter descriptor for the menu.

Determines the delay in milliseconds before creating a filter descriptor based on the value. A value of 0 means no delay.

Default:

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.

Default:

"eq"

The placeholder text for the filter input.

Default:

''

spinners

boolean

When true, shows the Up and Down spin buttons.

Default:

true

step

number

Sets the value used to increment or decrement the component value.

Default:

1

Fields

currentFilter

FilterDescriptor

Gets the current filter for the column field.

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.

Methods

Parameters:value"and" | "or"