nraynaud lol | stoukou a écrit :
voila g ça comme code regarde c quoi qui colle pas public Component getTableCellRendererComponent(JTable table, Object value,
boolean isSelected, boolean hasFocus, int row, int column) {
super.getTableCellRendererComponent(table, value, isSelected, hasFocus,
row, column);
JLabel res=null; if (value instanceof ImageIcon) {
ImageIcon imge = (ImageIcon)value;
res = new JLabel(imge); res.setVisible(true);
System.out.println(value instanceof ImageIcon);
return res;
}else{
return this;
}
}
et mille merci d avance encore une fois
|
Code :
- public Component getTableCellRendererComponent(JTable table, Object value,
- boolean isSelected, boolean hasFocus, int row, int column) {
- JLabel res = (JLabel)super.getTableCellRendererComponent(table, value, isSelected, hasFocus, row, column);
-
- if (value instanceof ImageIcon) {
- ImageIcon imge = (ImageIcon)value;
- res.setText(null);
- res.setIcon(imge );
- return res;
- }else{
- return res;
- }
- }
|
Message édité par nraynaud le 03-06-2005 à 15:13:07 ---------------
trainoo.com, c'est fini
|