I have a JTable with a several columns, one of which is has a custom renderer to display 3 buttons in a JPanel as well as a custom editor to allow them to be clickable. One of the buttons sends a delete command to our server for that row id then reloads the table data from the server by clearing the data model and loading data again. When this happens the cell with the 3 buttons continues to display (but not the rest of the row) until I click another button in another row even though the row is gone.

I've set putClientProperty("terminateEditOnFocusLost", Boolean.TRUE) but changing focus to another component does not help.

I've tried deleting the row itself before refreshing the data (even deleted all the rows) and made sure to call fireTableRowsDeleted().

I've also tried calling the cancelCellEditing() and stopCellEditing() functions of the TableCellEditor and even manually setting the editing row/column to another cell.

Any help would be greatly appreciated.


Ok, so I figured it out. I ended up calling removeEditor() on the table and that fixed it.

Thanks for the responses.

link|improve this question
2  
no idea why not, what's wrong/really happends without seeing your code in sscce.org forms – mKorbel Sep 29 '11 at 15:04
feedback

2 Answers

I've set putClientProperty("terminateEditOnFocusLost", Boolean.TRUE) but changing focus to another component does not help.

That method should be invoked when you create the table, not in the actionPerformed method when you click the button.

link|improve this answer
Sorry should have mentioned that it is set when creating the table. – Ryan Sep 29 '11 at 15:11
@Ryan see mKorbel's comment. – camickr Sep 29 '11 at 18:12
feedback
up vote -1 down vote accepted

Ok, so I figured it out. I ended up calling removeEditor() on the table just before the data refresh and that fixed it.

Thanks for the responses.

link|improve this answer
dont think so (guessing involved, as you didn't show any code :-) - instead, it hacks around a misbehaviour of your editor: the editor must notify its listeners that it is done with editing. One of those listners would be the code which sends the data refresh. That code must be delayed (by wrapping in invokeLater) until after the table's internal cleanup – kleopatra Oct 1 '11 at 8:39
feedback

Your Answer

 
or
required, but never shown

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