JavaScript/jQuery CheckBox - Keyboard Support
An end user can use the following keys to interact with the UI component.
Key | Action |
---|---|
Space | Changes the UI component value. |
Use the registerKeyHandler(key, handler) method to implement a custom handler for a key.
JavaScript
- function registerKeyHandlers () {
- const checkBox = $("#checkBoxContainer").dxCheckBox("instance");
- checkBox.registerKeyHandler("backspace", function(e) {
- // The argument "e" contains information on the event
- });
- checkBox.registerKeyHandler("space", function(e) {
- // ...
- });
- }
See Also
Feel free to share topic-related thoughts here.
If you have technical questions, please create a support ticket in the DevExpress Support Center.
Thank you for the feedback!
If you have technical questions, please create a support ticket in the DevExpress Support Center.