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.