Tab into JTable with one tab instead of two?
Tabbing into a JTable only almost works; the first time you hit tab from the immediately prior component the cursor just disappears, and it takes a second tab to get it into the JTable. I've found out that Swing thinks the focus is in the JTable even after first tab, so JTable is somehow hiding the focus in limbo until you say "no, I _really_ want the focus to be in you", so to speak.
There's a simple example that replicates this bug here (don't even need to use custom focus traversal, shows up with normal):
http://java.sun.com/docs/books/tutorial/uiswing/misc/focus.html#customFocusTraversal
But I couldn't find anything on Google about it. Is there a known workaround for this? I tried tinkering with editCellAt, selectAll etc but no effect.
Thanks,

