JavaFX TextField Auto-suggestions
问题 I want to make this TextField have suggestions feature just like in Lucene. I've searched all the web and I just find it for ComboBox. TextField instNameTxtFld = instNameTxtFld(); private TextField instNameTxtFld() { TextField txtFld = new TextField(); txtFld.setPrefSize(600, 75); return txtFld; } The reason that I can't use the method for ComboBox is because I can't input the value to database below if I use ComboBox. private void goNext() { if (nameTxtFld.getText() == null || nameTxtFld