有没有办法隐藏或删除某个单元格或整列的值? 如果你看一下这张照片:
在将模拟数据添加到表格时,您会发现我非常有创意。
除了所有的笑话,我想从Priority列中删除所有值,因此只有彩色单元格。可能吗?也许迭代整个列并将值设置为null?只是一个没有实现计划的想法......
修改
我的细胞渲染器:
public Component getTableCellRendererComponent(JTable table, Object value, boolean isSelected, boolean hasFocus,
int row, int column) {
Component cell = super.getTableCellRendererComponent(table, value, isSelected, hasFocus, row, column);
if(value.equals("1")) { // red
cell.setBackground(Color.RED);
cell.setForeground(Color.WHITE);
} else if (value.equals("2")) { // yellow
cell.setBackground(Color.ORANGE);
cell.setForeground(Color.WHITE);
} else if (value.equals("3")) { // green
cell.setBackground(Color.GREEN);
cell.setForeground(Color.WHITE);
} else { // white
cell.setBackground(Color.WHITE);
cell.setForeground(Color.GRAY);
}
return cell;
}
将渲染器指定给表:
TableColumn tblColumn = this.tblTodo.getColumnModel().getColumn(1);
tblColumn.setCellRenderer(new PriorityColumnCellRenderer());
答案 0 :(得分:1)
您只需在渲染器的value
方法中将超级方法调用中getTableCellRendererComponent(...)
的值更改为空字符串:""
:
Component cell = super.getTableCellRendererComponent(table, "", isSelected,
hasFocus, row, column);
如,
public Component getTableCellRendererComponent(JTable table, Object value, boolean isSelected, boolean hasFocus,
int row, int column) {
Component cell = super.getTableCellRendererComponent(table, "", isSelected,
hasFocus, row, column);
if(value.equals("1")) { // red
cell.setBackground(Color.RED);
cell.setForeground(Color.WHITE);
} else if (value.equals("2")) { // yellow
cell.setBackground(Color.ORANGE);
cell.setForeground(Color.WHITE);
} else if (value.equals("3")) { // green
cell.setBackground(Color.GREEN);
cell.setForeground(Color.WHITE);
} else { // white
cell.setBackground(Color.WHITE);
cell.setForeground(Color.GRAY);
}
return cell;
}
答案 1 :(得分:0)
找到答案。
超级课程中有一种方法:
super.setValue("myValue");
就我而言,这将是这样的:
super.setValue(null);
但是在检查值之后需要调用它。最终代码:
修改强>
public Component getTableCellRendererComponent(JTable table, Object value, boolean isSelected, boolean hasFocus,
int row, int column) {
Component cell = super.getTableCellRendererComponent(table, value, isSelected, hasFocus, row, column);
if(value.equals("1")) { // red
cell.setBackground(Color.RED);
cell.setForeground(Color.WHITE);
super.setValue(null);
} else if (value.equals("2")) { // yellow
cell.setBackground(Color.ORANGE);
cell.setForeground(Color.WHITE);
super.setValue(null);
} else if (value.equals("3")) { // green
cell.setBackground(Color.GREEN);
cell.setForeground(Color.WHITE);
super.setValue(null);
} else { // white
cell.setBackground(Color.WHITE);
cell.setForeground(Color.GRAY);
super.setValue(null);
}
return cell;
}
修改强>
为了简单起见,我使用了Hovercraft Full Of Eels的回答