I have a table with 3 columns, the first column is special and contains a checkbox instead of a title.

The problem is that the layout (appareance) of the checkbox header is different from the other headers. Can anyone help?

The Code:

import java.awt.*;  
import javax.swing.*;  
import javax.swing.table.*;  
import java.awt.event.*; 

public class JTableHeaderCheckBox  
{  
  Object colNames[] = {"", "String", "String"};  
  Object[][] data = {};  
  DefaultTableModel dtm;  
  JTable table;  
  public void buildGUI()  
  {  
    dtm = new DefaultTableModel(data,colNames);  
    table = new JTable(dtm);  
    for(int x = 0; x < 2; x++)  
    {  
      dtm.addRow(new Object[]{new Boolean(false),"Row "+(x+1)+" Col 2","Row "+(x+1)+" Col 3"});  
    }  
    JScrollPane sp = new JScrollPane(table);  
    TableColumn tc = table.getColumnModel().getColumn(0);  
    tc.setCellEditor(table.getDefaultEditor(Boolean.class));  
    tc.setCellRenderer(table.getDefaultRenderer(Boolean.class));  
    tc.setHeaderRenderer(new CheckBoxHeader());  
    JFrame f = new JFrame();  
    f.getContentPane().add(sp);  
    f.pack();  
    f.setLocationRelativeTo(null);  
    f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);  
    f.setVisible(true);  
  }  

  public static void main (String[] args)  
  {  
    SwingUtilities.invokeLater(new Runnable(){  
      public void run(){  
        new JTableHeaderCheckBox().buildGUI();  
      }  
    });  
  }  
}  

class CheckBoxHeader extends JCheckBox implements TableCellRenderer {  
    protected CheckBoxHeader rendererComponent;  
    protected int column;  

    public CheckBoxHeader() {  
        rendererComponent = this;   
    }  

    public Component getTableCellRendererComponent(JTable table, Object value, boolean isSelected, boolean hasFocus, int row, int column) {  
        setColumn(column);   
        return rendererComponent;  
    }  

    protected void setColumn(int column) {  
        this.column = column;  
    }  
    public int getColumn() {  
        return column;  
    }    
} 

The wierd output:

enter image description here

UPDATE:
What I want:

  1. Center align the checkbox in the header
  2. If you pay close attention, you notice the background of the checkbox Header (it seems popping to the inside) is different from the other 2 headers (they seem popping out)
link|improve this question

feedback

2 Answers

up vote 0 down vote accepted

If you're referring to the border of the checkbox you can try this to make the header look more consistent:

public CheckBoxHeader() {  
    rendererComponent = this;  

    setHorizontalAlignment(JLabel.CENTER);
    setBorderPaintedFlat(true);
    setBorderPainted(true);
}  
link|improve this answer
I will check this tomorrow as I am not currently at work :) – Adel Boutros Jan 31 at 19:53
Ok, the border is fine now. How do I center-align the checkbox in the table header? If you answer this one, I will accept your answer. – Adel Boutros Feb 1 at 17:37
I have modified your answer to add the solution for the center-alignment. Thanks for your answer – Adel Boutros Feb 1 at 17:54
feedback

TableCellRenderer returns JLabel/JComponents and these JComponents haven't got implemented any LayoutManager, but there isn't any restictions for setting some of LayoutManagers

link|improve this answer
so how can I replicate the effect of the other table headers (String, String)? – Adel Boutros Jan 31 at 19:32
If you are saying I should set a layout, may I ask how can I get the Layout used for the other 2 headers? – Adel Boutros Jan 31 at 19:34
hehehe good question, that's only about that you put a JComponent to the TableHeader/Cell – mKorbel Jan 31 at 19:43
TableHeader have got same logics as TableCell there is only about ColumnModel :-) – mKorbel Jan 31 at 19:45
Sorry man but I am very confused and lost (Work Overload)!! Could you please provide me with a fix in the shape of code? – Adel Boutros Jan 31 at 19:52
show 4 more comments
feedback

Your Answer

 
or
required, but never shown

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