> I have a JCheckBox in a JTable, but when I check one box,
> nothing seems to happen, the value is still checked..
>
> Does anyone know why?
Is the cell editable? I believe components in a table are read-only, unless
you make the cell editable and supply the component for use in editing... In
your table's TableModel (used to create the table), override
isCellEditable() and return true for the cells that have those checkboxes
in. That is the first step.

Signature
--
Jason Teagle
jason@teagster.co.uk
newsfan - 15 Dec 2003 14:14 GMT
Hello, I have responded to you directly, as I am including some
screenshots in my reply .. in order to explain further what is happening.
Carl
> > I have a JCheckBox in a JTable, but when I check one box,
> > nothing seems to happen, the value is still checked..
[quoted text clipped - 11 lines]
> Jason Teagle
> jason@teagster.co.uk