All Questions
15 questions
3
votes
2
answers
113
views
Populating JavaFX ControlsFX Autocompletion Textfield resulting in duplicate content
I've been using the JavaFX ControlsFX TextFields.bindAutoCompletion() with asynchronous javafx tasks in order to populate autocompletion results from my neo4j database after a user enters two ...
1
vote
1
answer
454
views
JavaFX - Autocompletion TextField that suggests only matching item starting with input (SuggestionProvider not accessible)
I would like the Autocompletion to suggests only matching item that START with the user's input, instead of showing all the item that CONTAIN the user's input.
One way I found is to use ...
0
votes
0
answers
92
views
Eclipse is not resolving eventhandler with autocomplete
i am new to java and javafx. I have the following code and everything is working fine when i run the program. The code compiles successfully:
package application;
import javafx.application....
0
votes
0
answers
136
views
Exception in thread "JavaFX Application Thread" java.lang.IllegalArgumentException: This ParagraphText is not the parent of the given shape
In the listener when I detect double click in treeview, I cannot receive the caret bounds of the codearea for some reason. It bugs out saying this ->
Exception in thread "JavaFX ...
2
votes
2
answers
485
views
Autocompletion in codearea in javafx
How could I create a listview at the current caret position in codearea while typing as autocompletion in javafx? So far I locate the word that is currently being typed and I see if that word is ...
0
votes
1
answer
633
views
Is there a way to access ContextMenu scroll arrows (scroll bar) ? JavaFX
I implement autocomplete textfield based on this answer here:
https://stackoverflow.com/a/40369435/9047625
I use ContextMenu which height is long enough so ~15 items can be visible at a time, when ...
6
votes
2
answers
901
views
JavaFx: Autocomplete Multiselection TextField
I have to use a component which has autocomplete and multiselection, I will attach an image to show what I mean:
I know it is not supported by the base JavaFx but maybe you know where can I find any ...
0
votes
1
answer
269
views
Javafx ComboBox auto Complete returning errors
I want to filter through a string data from data base and get the ID of the row selected from my comboBox, but I am getting the following errors.
Exception in thread "JavaFX Application Thread" java....
0
votes
1
answer
343
views
Arrow key selection does not work to Autocompleated combo box when combo box values are reload java Fx
The 1st time program is loaded the arrow key selection in autocomplete combobox works. But after I clear and reload the values in it using a method below the arrow key navigation and selection of ...
1
vote
1
answer
3k
views
How to Customize auto complete text field suggestion in JavaFx
I am using ControlFx Textfields binding which works find. The thing is that the Suggestion popup values that Contains the inputed value. Like if i type in "M" values will be "Emma", "max", "rosemary", ...
1
vote
0
answers
698
views
How to use TextFields.bindAutoCompletion() without a default selection in the suggestions
The problem here is that there are similar product names so I only want to search for substrings to get a list of products (which is possible).
The method is called like this:
TextFields....
3
votes
1
answer
4k
views
Autocomplete textfield in javafx [duplicate]
I am currently working on a JavaFX project with Mongo DB as backend. I want to add a textfield which autocompletes typed text with suggestions. How can I do this?
1
vote
0
answers
363
views
Problems with AutoCompletation TextField in JavaFX
I hava a problem with AutocompletionText.
I make a TextField where it's possible to have dynamic suggestions.
switch(hairPossibility.get(observable.getValue().intValue()).toString()){
case ("...
0
votes
1
answer
3k
views
JavaFX ControlsFX Autocomplete: How to get popup result into a new ObservableList
I've created a Text Field and bind it into a AutoCompletion.
AutoCompletionBinding acb = TextFields.bindAutoCompletion(new TextField(), FXCollections.observableArrayList("Apple", "Orange", "Wood ...
4
votes
2
answers
11k
views
How to implement AutoComplete TextField using ControlsFX
I'm using the latest version(8.0.5) of ControlsFX and I think I need a little help with the AutoComplete TextField because I'm very new at this.
I got this code from here
...