Re: javax.swing.JTextField

2005-12-21 Thread Roman Kennke
Hi Christopher, I tested with current CVS HEAD and there it seems to work. And I believe, nobody worked on that in the last weeks, so it should at least be in 0.19 too. You can find the associated sourcecode in javax/swing/JTextField.java starting at line 95 (the notifyAction stuff). I

Re: javax.swing.JTextField

2005-12-21 Thread Roman Kennke
Hi again, What's strange is that JFormattedTextField, which inherits from JTextField, doesn't fire the action event... Oh, I see, it specifically overrides the action map. Is it correct that JFormattedTextField's getActions() just returns null, rather than invoking its super-class, or at

javax.swing.JTextField

2005-12-20 Thread Christopher Lansdown
Hi, JTextField doesn't seem to send any ActionEvent's when VK_ENTER is pressed, and looking through the source it doesn't seem to try to catch this. Is anyone working on this currently? Thanks, Chris Lansdown -- Let us endeavor so to live that when we come to die even the undertaker will be

Re: javax.swing.JTextField

2005-12-20 Thread Roman Kennke
Hi Christopher, Am Montag, den 19.12.2005, 22:40 -0500 schrieb Christopher Lansdown: Hi, JTextField doesn't seem to send any ActionEvent's when VK_ENTER is pressed, and looking through the source it doesn't seem to try to catch this. Is anyone working on this currently? Which version of

Re: javax.swing.JTextField

2005-12-20 Thread Christopher Lansdown
On 12/20, Roman Kennke wrote: Hi Christopher, Am Montag, den 19.12.2005, 22:40 -0500 schrieb Christopher Lansdown: Hi, JTextField doesn't seem to send any ActionEvent's when VK_ENTER is pressed, and looking through the source it doesn't seem to try to catch this. Is anyone

Re: javax.swing.JTextField

2005-12-20 Thread Anthony Balkissoon
On Mon, 2005-12-19 at 22:40 -0500, Christopher Lansdown wrote: Hi, JTextField doesn't seem to send any ActionEvent's when VK_ENTER is pressed, and looking through the source it doesn't seem to try to catch this. Hi Chris, I ran a little test program and it seems to work for me. Are you