Hi!
Given a javax.swing.table.TableColumn
... is it possible in some way to specify the TableCellRenderer/TableCellEditor to be used for a given type rather than having the TableColumn use the same TableCellRenderer/TableCellEditor?
I'm aware that I can specify some DefaultCellEditor/Renderer in the JTable, but this is not what I want.
Due to details (legacy code specifics), I am not able to override the JTable#getCellEditor(int,int) and JTable#getCellRenderer(int,int).
Appreciate any suggestions...