TAB and JTable 2
I have a JTable and I want to use the TAB botton of the key to move inside the table's cells...
I use this code:
table.addKeyListener(new KeyAdapter()
{
public void keyReleased(KeyEvent e)
{
if(e.getKeyCode() == KeyEvent.VK_TAB)
{
System.out.println("work");
}
}
});
I do not have results...
How is possible?
Thank you

