Set Focus on a JDateChooser

Is it possible to change the focus from a jFormattedTextField to a JDateChooser?

I've tried the following:

jFormattedTextField.addActionListener(new ActionListener() {
        @Override
        public void actionPerformed(ActionEvent e){
            jDateChooser.requestFocus();
        }
});

But it doesn't work. The cursor disappears when you press Tab or Enter.

Upvotes: 0

Views: 2954

Answers (2)

Adrian
Adrian

Reputation: 665

Better way

jDateChooser.getDateEditor().getUiComponent().requestFocusInWindow();

Upvotes: 0

requestFocusInWindow() solved the issue. Thanks!

jFormattedTextField.addActionListener(new ActionListener() {
    @Override
    public void actionPerformed(ActionEvent e){
        jDateChooser.requestFocusInWindow();
    }
});

Upvotes: 1

Related Questions