[grid] setTabOrder

hello,



i have a quick question for dhtmlx grid.

the feature setTabOrder seems to take a list of column indexes as arguments…



is it possible to have the tab order defined row-wise?



right now we have a grid where row acts as columns and columns act as rows…so we would like the user to move down vertically (row-wise) instead of horizontally(column-wise)











thanks,

setTabOrder can be used only to define tab order inside row.
If you need to change the way how tab key works, it can be done by using onKeyPress event, or direct changes in keymap

grid = new …
grid._key_events.k9_0_0=function(){
//any code here, which will select next necessary cell
};

When I mygrid.setTabOrder(“1,2,3,4”) on my grid, the tabbing does not work?  I’m using the latest version…