Reputation: 310
I am looking for a CalendarView control in JavaFX 8. Is there any built-in control like that or to use the popup calendar from DatePicker control. My idea is to display a calendar for the user to choose a date from.
Upvotes: 1
Views: 4806
Reputation: 38132
I've implemented some controls using the new Data and Time API.
The library is Open Source.
You can read more about it here:
http://puces-blog.blogspot.ch/2013/12/drombler-commons-date-and-time-controls.html
http://puces-blog.blogspot.ch/2013/04/drombler-commons-javafx-controls-for.html
The library is available from Maven Central (requires Java SE 8):
<dependency>
<groupId>org.drombler.commons</groupId>
<artifactId>drombler-commons-fx-time</artifactId>
<version>0.2</version>
</dependency>
If you find some bugs or have some enhancement requests, you can file them here: http://issues.drombler.org/
Upvotes: 1