Reputation: 2214
Is there any outlook like calendar control implemented in javaFX 2.0+?
Upvotes: 4
Views: 10260
Reputation: 156
Maybe by now you are on JavaFX 8. Then you could try CalendarFX.
Upvotes: 1
Reputation: 159416
Similar to Uluk's second suggestion, unless you want to build a pure JavaFX version yourself, I'd suggest wrapping something like Google Calendar in a WebView and programming it via a Java/JavaScript bridge.
Upvotes: 1
Reputation: 49195
I didn't meet yet a calendar control implemented in pure javaFX 2.0. However you can choose alternative ways:
1. Swing calendar component integrated into JavaFX. See for example Migcalendar. It is commercial though.
2. JS/JQuery calendar control in HTML file loaded by webEngine and viewed by webView. See for example Fullcalendar.
Upvotes: 5
Reputation: 106351
You could try:
Upvotes: 1