| Author |
Tabbing between cells in a JTable
|
Jonathan Moore
Ranch Hand
Joined: Nov 02, 2005
Posts: 36
|
|
I'm trying to create a JTable that acts like a set of JTextFields, with the top row and left column rendered as JLabels. The code below works fine, but I'd like to be able to tab between cells and the cell to immediately go into edit mode (so it's invisible to the user that this is actually a table). Additionally I'd like it to skip uneditable cells, so tabbing on a far right cell doesn't move to the label on the next row, but to the next editable cell. I've spent quite a while trying to figure this one out but with no luck, so does anyone have any pointers? If you run the code below you will see that clicking in an editable cell automatically puts it into edit mode (with cursor and changed text position) but tabbing doesn't give any visual indications, though if you start typing it starts editing. Thanks for any help, and here;s the code:
|
 |
Craig Wood
Ranch Hand
Joined: Jan 14, 2004
Posts: 1535
|
|
I'd like to be able to tab between cells and the cell to immediately go into edit mode (so it's invisible to the user that this is actually a table). Additionally I'd like it to skip uneditable cells, so tabbing on a far right cell doesn't move to the label on the next row, but to the next editable cell. I got your code to work (as described above) with only the following additions:
|
 |
Jonathan Moore
Ranch Hand
Joined: Nov 02, 2005
Posts: 36
|
|
That's great - thanks for your help Craig. Jon
|
 |
 |
|
|
subject: Tabbing between cells in a JTable
|
|
|