bigDecimalLabel.numberProperty().bind(defaultSpinner.numberProperty());
bigDecimalLabel.formatProperty().bind(numberFormatProperty);
root.addRow(rowIndex++, new Label("BigDecimalLabel"), bigDecimalLabel);
CalendarLabel calendarLabel = new CalendarLabel();
calendarLabel.valueProperty().bind(calendarTextField.calendarProperty());
calendarLabel.formatProperty().bind(dateFormatProperty);
root.addRow(rowIndex++, new Label("CalendarLabel"), calendarLabel);
// defaultSpinner.requestFocus();
// calendarTextField.requestFocus();
Platform.runLater(new Runnable() {