I want to display a JDateChooser
component inside an Option pane depending on some selection from the user.
The point is that I tried getting the JDateChooser
the way I want it to appear using next code:
JOptionPane.showInputDialog(null, new JDateChooser(),"Start date", JOptionPane.PLAIN_MESSAGE);
I tried with different kinds of JOptionPane
variants but I can't figure out how to get this done, the user must be able to select the date and confirm by clicking a button so that I can retrieve that date and use it as a String
.
I'd like to have something like this:
String s = JOptionPane.showInputDialog(null,"Text", "More Text", JOptionPane.INFORMATION_MESSAGE);
So that in that way I can get the selected date. I'm working with jcalendar-1.4.jar