views:

1795

answers:

2

I need to add ability to pick a date in my Swing application. Picking should be similar to JComboBox, but instead of drop down list I would like to obtain one month with dates and ability to scroll between months.

There is no such component in JDK. A list with a lot of third party components is available at http://www.java2s.com/Product/Java/Swing/Calendar-Date-Time.htm.

Which third party Swing Component for date picking can you suggest which is free and easy to use?

Thanks!

+5  A: 

It is not a combobox like you said you wanted (more of a traditional calendar widget), but JCalendar by Kai Toedter works pretty well.

Nemi
+2  A: 

JXDatePicker from SwingX should meet your needs.

Mark