views:

23

answers:

1

I have two (5 * 1) tables to be shown as a single table on UI. How can I get a focus traversal mechanism for the two components(table) which mimicks the behavior of single ( 5 * 2 ) table.

+1  A: 

You would need to create a custom focus traversal Action. Table Tabbing shows you how to create a custom tabbing Action for a single table.

In your case I would guess the custom Action would require a List of tables you want to tab between. Then for each tab request you move to the next table. When you reach the last table you go the the first and incrment the row. The Action would need to be installed an all the tables.

camickr