Keyboard Interaction
8 Jun 20231 minute to read
With the keyboard navigation enabled in the CurrencyTextBox control, it is possible to control the actions of the CurrencyTextBox with the provided shortcut keys. Almost all the CurrencyTextBox actions that are done through mouse can be controlled with shortcut keys.
The various keyboard shortcuts available within the CurrencyTextBox control are discussed in the following table.
Keyboard Shortcuts
Shortcut Key | Description |
---|---|
Access key + j | Focuses the control |
Up | Increments the value |
Down | Decrements the value |
Tab | Focus the next element |
Configuring Keyboard Navigation
The following steps explain the implementation of keyboard interaction in CurrencyTextBox .
In the HTML page set the corresponding <input> elements for rendering CurrencyTextBox controls. Set the access key property to the CurrencyTextBox control for focusing the control while key is pressed.
<input id="currency" type="text" />
/// <reference path="tsfiles/jquery.d.ts" />
/// <reference path="tsfiles/ej.web.all.d.ts" />
module EditorComponent {
$(function () {
var number = new ej.CurrencyTextbox($("#currency"), {
value: 33
});
});
}
Run the above example and press Access key + j key to focus the Textbox widget. Perform provided functionality by using keyboard shortcuts.