Hi,
I have created a table with first column as checkbox.
Using the below Code..
TableColumn tc = constructedTable.getColumnModel().getColumn(0);
tc.setCellEditor(constructedTable.getDefaultEditor(Boolean.class));
tc.setCellRenderer(constructedTable.getDefaultRenderer(Boolean.class));
tc.setHeaderRenderer(new CheckBoxHeader(new MyItemListener()));
I sometimes get stackoverflow exception.
Is This beacause of the above code..?