Tagged Questions
-1
votes
1answer
102 views
Exception in Autocomplete Textfield [closed]
I have the error while running this application..get exception and not displaying anything on jtextfield..so give me snippet of that..where is the problem? i cant get anything while writing onto the ...
0
votes
2answers
150 views
Weird java auto complete of JTextField special case
I have an autocompletion of JTextFields which so far seemed to work, however a specific subcase has appeared which is shown below: try inserting "em" and instead of "emanuele semani" autocompletion ...
0
votes
2answers
174 views
JTextField focus is not getting on the first click of Tab button
i've done an application with two JTextField with the autocomplete feature
the application works fine but On clicking the Tab Button while the mouse pointer is on the first TextField the Mouse focus ...
0
votes
4answers
99 views
Generate JTextField Input Guesses
I have a Swing Application with a JTextField that the user is Supposed to Input ID Numbers. The ID Numbers are Stored in a database. During Inquiry from the DB the End user is again required to Input ...
1
vote
1answer
260 views
JTextField AutoCompletion Error
In this thread, I've found a way to implement AutoComplete feature in a JTextField (and JComboBox, but no issue with this).
When trying to implement this feature in a JTextField it throws some ...
0
votes
2answers
486 views
How to assign the auto complete text field to JTable cell?
I have created one Class for auto complete text fields.
I want to use that Class and try to include my JTable cell fields, but it won't display.
Please advice
1
vote
1answer
759 views
Autocomplete and editable JTextField using AutoCompleteDecorator
I am using a JTextField for auto suggestion, as described in following code
String[] myStrings = new String[] {"Elem1","Elem2","Elem3","Elem4","Elem5"};
JList list = new JList(myStrings); //data has ...
1
vote
2answers
2k views
autocomplete JTextField for netbeans
I created a desktop application in netbeans ,up to yesterday it was well but now the requirements are changed and client want all JTextField as autocomplete , the source is databse, I googled and ...
2
votes
1answer
111 views
Need help on validating autocomplete
Searching around for single line auto-completion I have found code here and there and finally ended up using this one
public class AutoCompleteDocument extends PlainDocument {
private final ...
5
votes
2answers
6k views
Is it possible to have an autocomplete using jtextfield and a Jlist?
I want to create an autocomplete program in java and basically, I want to have an auto-complete or a list of suggestions regarding to the users input in the textfield. As the user types in the ...
1
vote
3answers
1k views
How to make an auto-complete list when I start to type in the textfield?
I have a textfield and if I want to write something to the field, it will show me the list of possible options regarding to that letter and I think this is called an auto complete.
Could someone give ...
2
votes
3answers
2k views
How to list suggestions to when typing inside the text field
Hi in my Java swing application I need to show all possible existing entries with same initial
characters while user typing in a text field. Lets say user type letter 'A' in a text field which should ...


