自定义ComboBox不能用鼠标选择?

时间:2016-03-25 15:06:33

标签: javafx-8

我无法找到任何相关内容 - 所以我想发一个简单的问题。我想创建一个自定义ComboBox,在扩展时显示字段的组合。下面的代码正确显示我的列表,并对键盘箭头作出反应,但是当我从下拉列表中选择箭头时,列表对鼠标单击没有反应供选择。

[编辑]此外 - 我似乎无法提前打字。

我不确定我错过了什么。

$array = array (
    "name" => "Top Level",
    "parent" => "null",
    "children" => array (
        "name" => "Level 2: A",
        "parent" => "Top Level",
        "children" => array (
            // ...
        )
    )
);

1 个答案:

答案 0 :(得分:1)

你错过了

super.updateItem(person, empty);

updateItem方法中。