vote up 2 vote down star

I have a JQueryDialog with a text field, an OK button and a cancel button.

I want to be able to hit the enter key after filling in the text fields and have it do the same action as when I click the OK button.

flag

80% accept rate

3 Answers

vote up 7 vote down check

In your dialog, call getRootPane().setDefaultButton(okButton).

link|flag
vote up 0 vote down

The code is almost correct. I would change the if comparison and use the correct method as noted below.

if (KeyEvent.VK_ENTER == event.getKeyCode()) {
                yourButton.doClick();
            }
link|flag
vote up 0 vote down
yourTextFeild.addKeyListener(
    new KeyListener(){
        public void keyPressed(KeyEvent e){
            if (e.getKey() == KeyEvent.VK_ENTER)
                yourButton.doClick();
        }
    }
);

That is a quick summary of the needed code. I didn't compile it.

Check out the KeyListener class for better info.

link|flag
If you do it this way, at least use an ActionListener instead of a KeyListener... – Ilja Preuß Dec 5 '08 at 20:24
Oh, and instead of using button.doClick(), simply register the same ActionListener to the textField as you did to the button. – Ilja Preuß Dec 5 '08 at 20:25
Hey, post an answer so I can see the code better than in my head – jjnguy Dec 5 '08 at 20:26

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.