Outlook, for example, calendar management in JavaFX 2.0+

Is there any appearance, for example, calendar management implemented in javaFX 2.0 +?

+4
source share
4 answers

I have not yet met the calendar controls implemented in pure javaFX 2.0. However, you can choose alternative methods:
1. Swing calendar component integrated in JavaFX. See for example Migcalendar . This is commercial. 2. Managing the JS / JQuery calendar in an HTML file loaded by webEngine and viewed by webView. See for example Fullcalendar .

+5
source

Like Uluk’s second sentence, if you don’t want to create a clean version of JavaFX yourself, I would suggest wrapping something like Google Calendar in a WebView and programming it using the Java / JavaScript bridge.

+1
source

You may now be on JavaFX 8. Then you can try CalendarFX .

+1
source

Source: https://habr.com/ru/post/1411921/


All Articles