I am trying to enable navigation in Kendo grid using arrow keys. I have seen may examples where arrow keys are used to navigate only between editable cells. There are 50+ columns in my kendo grid in which 20+ cell are editable. I have created a keydown event in databound which works fine only for editable cell. If I move to non editable cell Key press events are not working.
Current Working Logic:
Left and Right arrow keys are working only inside Editable cell. Once we reach non editable cell it's not working.
Desired Working Logic
When we press arrow key if the cell is editable then it should go in edit mode, if the cell is non editable the focus should stay and when we press left / right arrow key it cursor should move to prev/next cell.
I have created a telerik dojo.
UPDATE This Dojo is working as expected in IE. But in chrome it's not working. Basically Right arrow key
should work like TAB
key and Left Arrow key
should work like SHIFT+TAB