Closedown

This commit is contained in:
boccioli_m
2015-06-08 13:56:58 +02:00
parent c8046cbfa1
commit d7acafbdbd

View File

@@ -223,9 +223,10 @@ jTable1.setValueAt(icon, rowD, COL_ICON);
{false, sDate, "FIXL", "Lamp Test", "Failure", "Pending", icon}
};
jTable1.getColumn("Sum").setCellRenderer(new mcr());
DefaultTableModel model = new DefaultTableModel(data, columnNames);
DefaultTableModel imodel=(DefaultTableModel) model;
jTable1.setModel(model);
jTable1.getColumn("Sum").setCellRenderer(new mcr());
DefaultTableModel imodel=(DefaultTableModel) jTable1.getModel();
// jTable1.setRowHeight(80);
imodel.setValueAt(icon, 0, 3);
jTable1.setModel(imodel);