Is there any outlook like calendar control implemented in javaFX 2.0+?
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.
You could try:
Maybe by now you are on JavaFX 8. Then you could try CalendarFX.
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.