Disable dropdown list kendo keyboard navigation

I want to disable the Kendo Keyboard Navigation dropdown which is the default behavior:

DropDownList / Keyboard Navigation

In my specific case, I have a drop down inside an editable grid and I want to disable changing the highlighting of the next / previous item when the left / right arrows are pressed, because I am using them to perform a different behavior (change focus to the next column)

+3


source to share


1 answer


I got an answer

It looks like the secret is to disable the keydown event in the dropdown:



.off("keydown")

      

here is the working code in Code Pen where I disabled the right and left arrows and enabled other keys: http://codepen.io/MohQut/pen/vEKBvz

0


source







All Articles