Keyboard Navigation
The keyboard navigation of the NumericTextBox is always available.
The NumericTextBox supports the following keyboard shortcuts:
SHORTCUT | DESCRIPTION |
---|---|
Upper Arrow |
Increases the displayed numeric value with a predefined step. |
Down Arrow |
Decreases the displayed numeric value with a predefined step. |
@Component({
selector: 'my-app',
template: `
<kendo-numerictextbox
[value]="value"
></kendo-numerictextbox>
`
})
class AppComponent {
public value: number = 5;
}