Hi Guys,
I'm working with a JTable which sets up certain columns with cell renderers and editors. My application allows the user to change the interface to a different language, so JMenuItems, buttons, etc. change their text and I've set it up so that the header on the JTable changes as well. Two lines of code make that happen:
All this part works as expected, however, after the call to fireTableStructureChanged() has completed, the columns that were governed by cell renderers and editors are no longer in effect. Those cells have reverted back to working as normal JLabel cells. What happened? How do I prevent losing the renderers and editors on those columns?
See below for additional code, which might help.
Alan