I want to remove the ComboBox of a DatePicker and only show the Calendar of the DatePicker instead.
Explained here: JavaFX extract calendar-popup from DatePicker / only show popup
If I want to accomplish it in java I would do something like:
DatePickerSkin skin = new DatePickerSkin(new DatePicker());
Node calendarControl = skin.getPopupContent();
But how can I do this in FXML? (I use SceneBuilder)
<DatePicker id="datePicker" prefHeight="25.0" prefWidth="535.0" showWeekNumbers="true">
<HBox.margin>
<Insets left="10.0" right="10.0" top="10.0" />
</HBox.margin>
</DatePicker>
?