Hallo,
ich hab bereits ein Beispiel für eine combobox innerhalb einer JTable gesehen. Allerdings ist da kein Tabellenkopf drin. Ich habe auch ein Beispiel gesehen wo eine Tabelle mit Kopf erstellt wird...
Mein Prob ist: Ich bekomme beide Teile einfach nicht zusammen!
Hier einfach mal das Beispiel aus diesem Forum und meine versuchte Änderung...der Tabellenkopf wird gespeichert, aber nicht angezeigt
ich hab bereits ein Beispiel für eine combobox innerhalb einer JTable gesehen. Allerdings ist da kein Tabellenkopf drin. Ich habe auch ein Beispiel gesehen wo eine Tabelle mit Kopf erstellt wird...
Mein Prob ist: Ich bekomme beide Teile einfach nicht zusammen!
Hier einfach mal das Beispiel aus diesem Forum und meine versuchte Änderung...der Tabellenkopf wird gespeichert, aber nicht angezeigt
Code:
import java.awt.BorderLayout;
import javax.swing.DefaultCellEditor;
import javax.swing.JComboBox;
import javax.swing.JFrame;
import javax.swing.JScrollPane;
import javax.swing.JTable;
import javax.swing.table.TableColumn;
import javax.swing.table.TableColumnModel;
public class JComboBoxDemo extends JFrame {
private JTable table;
private JScrollPane scrollPane;
public JComboBoxDemo() {
super("JTableComboBoxDemo");
setDefaultCloseOperation(EXIT_ON_CLOSE);
final JComboBox combo = new JComboBox(new String[] { "boolean", "float", "int", "string" });
String[] columns = new String[] { "Name", "Value", "Typ" };
Object[][] data = new Object[20][3];
table = new JTable(data, columns);
TableColumnModel colmModel = table.getColumnModel();
TableColumn tc1 = colmModel.getColumn(2);
tc1.setCellEditor(new DefaultCellEditor(combo));
scrollPane = new JScrollPane(table);
getContentPane().add(table, BorderLayout.CENTER);
pack();
setVisible(true);
}
public static void main(String[] args) {
new JComboBoxDemo();
}
}