Hello,
I want to add a new action with a shortcut, but I can't detect the keyboard action. I added
useEventBoxes: 'Always',
keyboardEnabled: true,
but it dont fonction.
I tried with @HostListener, but for this to work i must first click outside of matrix
@HostListener('document:keydown', ['$event'])
handleKeyboardEvent(event: KeyboardEvent) {
console.log('KeyboardEvent keydown', event);
}
Please help me find a solution