here's code for 3 managers, one vertical, and 2 horizontal, I want the focus to be 2 dimensional, its a 2x4 field grid
the way I have this set up, scrolling down from row 1 and column 1, moves the focus to the right along the row of 4 and then continues on the second row at column 1.
how can I allow the scroll to cross back into each row at the same column?
Code:
VerticalFieldManager grid = new VerticalFieldManager();
HorizontalFieldManager row1= new HorizontalFieldManager();
row1.add(Field1);
row1.add(Field2);
row1.add(Field3);
row1.add(Field4);
grid.add(row1);
HorizontalFieldManager row2= new HorizontalFieldManager();
row2.add(Field5);
row2.add(Field6);
row2.add(Field7);
row2.add(Field8);
grid.add(row2);
add(grid);