posted 18 years ago
Looking at Sun's web page for CellEditor ... makes me think that it just does not support formatting features
CellEditor is a general interface. CellEditor is implemented by AbstractCellEditor which you can use to build a custom cell editor for a JTable. DefaultCellEditor extends AbstractCellEditor and provides more opportunity for formatting control.
so I am thinking that I need to make something fit over the cell (like a JTextField) that has the ability to setFont. Is this the easy, or right way to do this?
Yes. The general idea is to make an editor and configure it just like your cell renderer is configured so that when it appears during an editing session it looks the same as the renderer. DefaultCellEditor has a constructor that takes a JTextField. To use the default renderer and provide a minimally customized editor to match you could try something like this:
You can get more fancy by providing your own renderer and editor. The renderer is pretty easy to make; often you can extend DefaultTableCellRenderer. The editor is a little more work. You can extend AbstractCellEditor, implement TableCellEditor and provide a configurable member variable component to return as the cellEditor. If you need to implement some of the CellEditor methods you can get some ideas by looking at the DefaultCellEditor source code.