Start Building Professional
Web Apps Today


 
Categories Question details Back To List
Question  posted by Michael Steinböck on Jan 24, 2008 10:32
open dhtmlx forum
Keyboard Navigation

Keyboard Navigation thru an editable grid works fine .
Tab selects next field in row, shift-tab selects previous field.
But:
if you touch a txttxt-field, the next TAB jumps outside the grid.
My fault or a system-bug?
I read, keyboard-navigation should work with arrow-keys too, but mine does not.
Regards, Steinboeck
Answer posted by Support on Jan 25, 2008 02:14
>>if you touch a txttxt-field, the next TAB jumps outside the grid.  My fault or a system-bug?

Problem with tab from txttxt editor in case of FF confirmed and fixed. Fix will be available as part of next build. If you need it asap - please contact us directly at support@dhtmlx.com
( or you can just locate next line in dhtmlxgrid.js
    _isIE?ev.returnValue=false:ev.preventDefault();       
and replace it with
    if (ev.preventDefault) ev.preventDefault();       
)


>>I read, keyboard-navigation should work with arrow-keys too, but mine does not.
Default key map allows only up and down keys, you can include excel_keymap file to activate full arrow-keys navigation.
Answer posted on Jan 25, 2008 03:09
I replaced and it works. Thx!