Thinhbk
Thinhbk

Reputation: 2214

Outlook like calendar control in JavaFX 2.0+

Is there any outlook like calendar control implemented in javaFX 2.0+?

Upvotes: 4

Views: 10260

Answers (4)

Dirk Lemmermann
Dirk Lemmermann

Reputation: 156

Maybe by now you are on JavaFX 8. Then you could try CalendarFX.

Upvotes: 1

jewelsea
jewelsea

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

Uluk Biy
Uluk Biy

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

Related Questions