I am using this code:

Border border = BorderFactory.createLineBorder(Color.green); 
DefaulTableModel dtm= new DefaultTableModel();
dtm.addColumn("Srno.");
dtm.addColumn("Product");
JTable table = new JTable(dtm);
table.getTableHeader().setBackground(new Color(150,255,150));
JTableHeader hed = table.getTableHeader();
hed.setBorder(border);

I want to add border for each cell of the tableheader. Is there any method to do this?

link|improve this question

14% accept rate
feedback

1 Answer

You have to set TableCellRenderer for TableHeader, for example or here

link|improve this answer
See also this related example. – trashgod Dec 22 '11 at 22:18
Ok thankyou, It works. – Usman Ahmed Dec 23 '11 at 12:25
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.