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: you can to use AutoComplete JComboBox / JTextField put this JComboBox / JTextField to the JTable as Renderer and Editor 回答2: (Assuming I understand the question) You need to wrap your editor in TableCellEditor. Have a look at Using Other Editors an example. Once you have it set up, you need to register the editor with the table.