我似乎无法添加JComboBox
到Jtable
. 我不知道我的代码有什么问题。我已经在
http://docs.oracle.com/javase/tutorial/uiswing/components/table.html尝试了这个例子。它只是行不通。这是我的代码。
JComboBox comboBox = new JComboBox();
comboBox.addItem("Snowboarding");
comboBox.addItem("Rowing");
comboBox.addItem("Chasing toddlers");
comboBox.addItem("Speed reading");
comboBox.addItem("Teaching high school");
comboBox.addItem("None");
editAddressFrm.getAddressTable().getColumnModel().getColumn(1).setCellEditor(new DefaultCellEditor(comboBox));