Add event(keyListener) to JTable Cell default editor.
I've got a form(Jdialog) with a Jtable on it.
I've added a keyListener to the JButtons and Jtable so that, wherever the the focus IS, when I hit the "F7" key, it fills the Jtable from the database connection.
It's working REALLY fine now but there is one small glitch.
When I'm editing a cell, the keyListener event is not thrown. I supposed it's because the "DefaultCellEditor" does not throw the event.
How can I add such a thing?
I'm looking for something like :
table.getDefaultEditor().addKeyListener
but it does not exists.
If it's not possible, is there a way to make the JDialog listen to all the keyListener events from its childs?(Mimics the JDK < 1.4)
Thx

