Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

Hello: How to add AutoComplete String for JTextField, getting auto complte list from Jtable column.

JTextField textfield = new JTextField();
JTable table =new JTable();
See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
1.1k views
Welcome To Ask or Share your Answers For Others

1 Answer

The SwingX library has a very handy AutoCompleteDecorator function.

Say you copy the values of your JTable column into an ArrayList called validValues. All you now need for autocompletion on the JTextField myTextField is the following code:

AutoCompleteDecorator.decorate(myTextField, validValues, true);

The third argument tells the autocomplete decorator whether you want strict matching, i.e. whether the user is allowed to enter values other than the ones in your JTable column or not.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...