我在我的专栏中创建了JComboBox,它运行正常。当我尝试在同一列中添加一个编辑器时,会出现此问题。场景,用户需要从ComboBox中选择值作为他们的注释。如果他们选择其他,则ComboBox下方应显示另一个文本框供用户输入。
ComboBox代码
TableColumn col5 = jTable1.getColumnModel().getColumn(4);
String[] options = new String[]{"Font Issue","Text Issue","Image Issue","AI Issue","Others"};
JComboBox combo1 = new JComboBox(options);
JComboBox combo2 = new JComboBox(options);
col5.setCellEditor(new DefaultCellEditor(combo1));
col5.setCellRenderer(new ComboBoxRenderer(combo2));
combo2.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent e) {
JComboBox nameCombo = (JComboBox)e.getSource();
String newSelection = (String)nameCombo.getSelectedItem();
if(newSelection.equalsIgnoreCase("others"))
{
}
}
});
当我再添加一个编辑器时。
MyTableCellEditor textEditor = new MyTableCellEditor ();
col5.setCellEditor(textEditor );
它会覆盖下拉列表。我想要这样的东西。
答案 0 :(得分:2)
Swing编辑器旨在占据单个单元格的空间。如果要显示包含两个组件的面板,则需要创建一个弹出编辑器。阅读Using Other Editors上Swing教程中的部分,了解如何执行此操作的示例。