i have a question about JTable. i use defaultcelleditor to render a
JChechBox editor for a cell. i use this code:
TableColumn sportColumn = table.getColumnModel().getColumn(3);
JCheckBox ok = new JCheckBox();
sportColumn.setCellEditor(new DefaultCellEditor(ok));
i want to retreive this jchechbox value. that means sometimes i want
to know the value of this checkbox is true or false. what should i do?