Start Building Professional
Web Apps Today


 
Categories Question details Back To List
Question  posted by josh on Aug 24, 2008 17:23
open dhtmlx forum
[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,
Answer posted by Support on Aug 25, 2008 01:55
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
};
Answer posted by Steve Schreiner on Sep 18, 2008 10:51
When I mygrid.setTabOrder("1,2,3,4") on my grid, the tabbing does not work?  I'm using the latest version...