I currently have a problem whereby editing the contents of one cell in a JTable alters the content of another; two of the columns are mutually exclusive. They are both checkboxes.

At the moment, if I alter one cell, it isn't until the other is redrawn that it updates. Therefore, both cells in the row can be displayed as being selected at any one time. This can be overcome by calling updateUI(), but it is slow and not a generally great idea.

Has anyone got any tips or suggestions?

link|improve this question

Sadly, the solution needs to be in Java 1.4 – colinjameswebb Dec 3 '09 at 11:03
It's not entirely clear what is happening versus what your intended behavior is. Could you provide some sample code? – rob Mar 29 '10 at 21:11
feedback

1 Answer

up vote 1 down vote accepted

It sounds like you should be using a TableModelListener to listen for changes to the TableModel. When a checkbox is changed you will receive an update event and you would then update the other checkbox by using model.setValueAt(...). The model is responsible for notifying the view to repaint the cell.

link|improve this answer
I've added a TableModelListener to the TableModel. However, it only seems to fire when an object is added/deleted, rather than when attributes of the object are changed... any ideas? – colinjameswebb Dec 9 '09 at 10:40
The default table editor does not modify an Object it always creates a new Object (String, Date, Integer) depending on the class of the column. If you are using a custom editor then I don't know what your code is doing. If you need more help post your sscce.org (SSCCE) that demonstrated the problem. – camickr Dec 9 '09 at 16:35
feedback

Your Answer

 
or
required, but never shown

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