JavaFX 2 ComboBox setValue()不设置CB文本

时间:2012-11-20 22:07:16

标签: java combobox javafx-2

我的问题是,使用setValue()选择后,选定的ComboBox项目文本在屏幕上不可见。 以下是一些细节: 将项目添加到我的CB:

combo.getItems().add("a");
combo.getItems().add("b");
combo.getItems().add("c");
combo.getItems().add("d");

之后,当按下按钮A时:

combo.setValue(null);

按下按钮B时:

combo.setValue("a");

现在,如果我先按下按钮B,会显示“a”,没关系。 之后,如果我按下按钮A,ComboBox上没有显示任何文本,那就没问题。 然后我按B,屏幕上的值没有变化。但是,如果我单击CB,则突出显示“a”的行,combo.getValue()返回“a”。

有任何建议如何处理?

3 个答案:

答案 0 :(得分:6)

我有同样的问题。它看起来像一个bug。以下是包含ComboBox s:

Locale的完整工作示例
package org.example;

import java.util.Arrays;
import java.util.List;
import java.util.Locale;

import javafx.application.Application;
import javafx.event.EventHandler;
import javafx.geometry.Insets;
import javafx.scene.Scene;
import javafx.scene.control.Button;
import javafx.scene.control.ComboBox;
import javafx.scene.input.MouseEvent;
import javafx.scene.layout.HBox;
import javafx.stage.Stage;
import javafx.util.StringConverter;

public final class ComboBoxTest extends Application {
    @Override
    public void start(final Stage stage) throws Exception {
        // Initialize UI
        stage.setTitle("ComboBox Test");
        final HBox root = new HBox(5.0f);
        final ComboBox<Locale> cbLocales = new ComboBox<>();
        cbLocales.setConverter(new StringConverter<Locale>() {
            @Override
            public String toString(final Locale locale) {
                return locale.getDisplayName();
            }

            @Override
            public Locale fromString(String string) {
                throw new UnsupportedOperationException();
            }
        });
        cbLocales.setPrefWidth(250);
        HBox.setMargin(cbLocales, new Insets(10));
        root.getChildren().add(cbLocales);
        final Button btnFill = new Button("Fill");
        HBox.setMargin(btnFill, new Insets(10));
        root.getChildren().add(btnFill);
        final Scene scene = new Scene(root);
        stage.setScene(scene);

        btnFill.setOnMouseClicked(new EventHandler<MouseEvent>() {
            @Override
            public void handle(final MouseEvent event) {
                // Fill with content
                final List<Locale> locales = Arrays.asList(Locale.ENGLISH,
                        Locale.GERMAN, Locale.FRENCH);
                final Locale defaultLocale = locales.get(1);
                // cbLocales.getItems.setAll(locales) doesn't work
                cbLocales.getItems().clear();
                cbLocales.getItems().addAll(locales);
                // Set default locale
                cbLocales.setValue(defaultLocale);
                cbLocales.setPromptText(cbLocales.getConverter().toString(
                        cbLocales.getValue()));
            }
        });

        stage.show();
    }

    public static void main(String[] args) {
        launch(args);
    }
}

第一次填充ComboBox时,一切正常:ComboBox包含所有3个Locale,第二个Locale已设置。

enter image description here

第二次填写后,ComboxBox.setValue无效:ComboBox包含所有3个Locale,但第二个Locale 集。没有选择项目,没有显示提示。

enter image description here

我用

修复了提示问题
// Set default locale
cbLocales.setValue(defaultLocale);
cbLocales.setPromptText(cbLocales.getConverter().toString(
        cbLocales.getValue()));

但它没有选择列表中的项目:

enter image description here

解决方法是:

cbLocales.getSelectionModel().select(defaultLocale);
cbLocales.setPromptText(cbLocales.getConverter().toString(cbLocales.getValue()));

选择项目并设置提示。但我不知道,如果有这样的问题(工具提示或类似)

答案 1 :(得分:0)

  

创建组合框时,必须实例化ComboBox类   将项目定义为可观察列表,就像其他UI控件一样   例如ChoiceBox,ListView和TableView。

示例代码:

ObservableList<String> options = 
    FXCollections.observableArrayList("A","B","C","D");

combo.setItems(options);

现在结果应该如你所愿:)(在我的本地机器上测试)

参考: Combo Box

答案 2 :(得分:0)

我认识到一种奇怪的行为。在设置“值”之前看起来setItems()似乎不应该完成......这里有一些对我有用的代码:

 ComboBox<String> editableComboBox = new ComboBox<String>(); // <- setting the items here 
                                                             // brings the "bug"
    editableComboBox.setId("combobox_fields" + i);
    String desciption = pair.getDescription();
    editableComboBox.setValue(desciption);
    editableComboBox.setEditable(true); 
    editableComboBox.setItems(FieldType.FIELD_TYPES); // <- here we go!

这里是值..

public static final ObservableList<String> FIELD_TYPES =
            FXCollections.observableArrayList("A", "B", "C",
                                              "D", "E", "F",
                                              "G", "H", "I");