Reputation: 71
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
Reputation: 665
Better way
jDateChooser.getDateEditor().getUiComponent().requestFocusInWindow();
Upvotes: 0
Reputation: 71
requestFocusInWindow() solved the issue. Thanks!
jFormattedTextField.addActionListener(new ActionListener() {
@Override
public void actionPerformed(ActionEvent e){
jDateChooser.requestFocusInWindow();
}
});
Upvotes: 1