Uploaded image for project: 'JDK'
  1. JDK
  2. JDK-8119202

The selected item of a ComboBox is rendered differently than the list of values

XMLWordPrintable

    • Icon: Bug Bug
    • Resolution: Not an Issue
    • Icon: P4 P4
    • 7u6
    • 7u6
    • javafx
    • Win XP,
      JavaFX 2.2b7

      I have implemented a LocaleComboBox extending from ComboBox that display a list of locales to the user.
      Using a CellFactory I'm rendering the locales as i18ned labels.

      ----------------
              this.setItems(FXCollections.observableArrayList(locales));
                    
              //render Locales using their localized labels
              this.setCellFactory(new Callback<ListView<Locale>, ListCell<Locale>>() {
                      @Override public ListCell<Locale> call(ListView<Locale> list) {
                          return new ListCell<Locale>() {
                              @Override protected void updateItem(Locale item, boolean empty) {
                                  super.updateItem(item, empty);
                                  setText(item == null ? "" : ImperiaResourceBundle.getBundle().getString("gui.locale."+item.toString()));
                              }
                          };
                      }
              });
      -----

      While this approach used to work in 2.1, it does not work entirely in 2.2, because the selected item is not rendered like the items in the dropdown.
      The items in the dropdown are rendered correctly i.e ("English", "German", "French"), but the selected item is rendered as "en", "de", "fr" instead...

            jgiles Jonathan Giles
            kiriljfx Kiril (Inactive)
            Votes:
            0 Vote for this issue
            Watchers:
            1 Start watching this issue

              Created:
              Updated:
              Resolved:
              Imported: