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
>>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.
I replaced and it works. Thx!