I\'m trying to build an CalendarView for an JavaFX application, to only display dates(no selecting required). Since the DatePicker class has a nice calendar pop
DatePicker
To remove "month-year-pane" use:
DatePickerSkin datePickerSkin = new DatePickerSkin(date_picker); Node popupContent = datePickerSkin.getPopupContent(); ((DatePickerContent) popupContent).getChildren().remove(popupContent.lookup(".month-year-pane"));