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

  • <template>
  • <DxCheckBox :ref="myCheckBoxRef" />
  • </template>
  • <script>
  • import 'devextreme/dist/css/dx.light.css';
  •  
  • import DxCheckBox from 'devextreme-vue/check-box';
  •  
  • const myCheckBoxRef = 'my-check-box';
  •  
  • export default {
  • components: {
  • DxCheckBox
  • },
  • data() {
  • return {
  • myCheckBoxRef
  • }
  • },
  • computed: {
  • checkBox: function() {
  • return this.$refs[myCheckBoxRef].instance;
  • }
  • },
  • mounted: function() {
  • this.checkBox.registerKeyHandler('backspace', function(e) {
  • // The argument "e" contains information on the event
  • });
  • this.checkBox.registerKeyHandler('space', function(e) {
  • // ...
  • });
  • }
  • }
  • </script>
See Also