Hello, im using KendoReact Window component and i need to disable keyboard movements with arrow keys, how do i do that?
here are the things i've tried:
1) set draggable={false} prop( window can't be dragged by mouse but arrow keys still work)
2) attach global on keydown event listener and use event.preventDefault(); ( window keeps keyboard movements and firing along side with the attached keydown listener functions )