Reputation: 765
I am working on a swing application that requires a date time chooser with a well designed frame. The time in my application is very vulnerable, and with the jar file that i am using
JCalendar.jar
The users have faced so many problems while choosing the right time.
So I am asking if there is any other date time chooser that I can use to make it clear and easy for the users to choose the appropriate time.
Upvotes: 2
Views: 402
Reputation: 205785
See also this approach using JSpinner
and a time formatted DateEditor
. It can be used alongside JCalendar
.
Upvotes: 4
Reputation: 17784
I had good experiences with JXDatePicker from the SwingX project. With this you can choose a date. If you also need time, see this: Is there any good and free Date AND Time Picker available for Java Swing?
Upvotes: 4