在javafx 2中,当editable设置为true时,onKeyPressed,OnKeyTyped不会调用Combobox ??请指导我

时间:2015-01-06 07:52:03

标签: javafx javafx-2 dropdownbox javafx-webengine

实际上我们需要可编辑的dropdown.so我们已经进行了setedtitable(true)的更改并且添加了StringConvertor.But KeyPressed和Keytyped,当它不是真的时,它们之前正在为过滤器工作。但是现在它没有调用。任何人都可以帮助我如何避免这种情况?由于keyPressed没有调用....过滤器无法正常工作....

1 个答案:

答案 0 :(得分:2)

我处理这个问题的方法是获取ComboBox的TextEditor并添加onKeyTyped事件。

注意:如果ComboBox设置为可编辑,则返回TextEditor。

示例:

package controller;

import java.net.URL;
import java.util.ResourceBundle;

import javafx.collections.FXCollections;
import javafx.event.EventHandler;
import javafx.fxml.FXML;
import javafx.fxml.Initializable;
import javafx.scene.control.ComboBox;
import javafx.scene.control.TextField;
import javafx.scene.input.KeyEvent;

public class AddDataController  implements Initializable {

    @FXML
    private ComboBox<String> groupName;

    @Override
    public void initialize(URL arg0, ResourceBundle arg1) {            
        groupName.setEditable(true);
        TextField tf = groupName.getEditor();
        tf.setOnKeyTyped(new EventHandler<KeyEvent>(){

            @Override
            public void handle(KeyEvent event) {
                // To Do
            }

        });
    }
}