vote up 0 vote down star

how to set the focus in the JTextField??

flag

3 Answers

vote up 3 vote down

Use requestFocusInWindow()

requestFocus() can be used but is discouraged as it is platform dependent.

See here for more details

link|flag
vote up 2 vote down

The abstract class Component which JTextField extends provides a requestFocus() method.

JTextField jtf = getTextFieldFromSomewhere();
jtf.requestFocus();
link|flag
vote up 1 vote down

JTextField extends JComponent so JTextField would have this method.

link|flag

Your Answer

Get an OpenID
or

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