I'm using standart JTable with standart cell editor to edit string values. On some platforms, when cell editor is opened, text doesn't fit in it and part of the text is cut. For example "_" symbol is not visible, as well as it's hard to distingush "l" and "1" because the upper part of the symbol may be cut.

Probably I should just increase the cell height, but how much?

The result very depends on current Look & Fell, for example on Windows everything may be fine, but on Linux described effect appear.

link|improve this question

73% accept rate
What layout managers are you using? – Hovercraft Full Of Eels Jul 19 '11 at 23:02
@javapowered what is standart cell editor, did you mean that TableCell is editable, nothing else, or there is some JComponent inside TableCell – mKorbel Jul 20 '11 at 6:17
1  
@Hovercraft - it's one of the few thingies a LayoutManager has nothing to do with :-) – kleopatra Jul 20 '11 at 8:25
@mKorbel standart cell editor is one used in DefaultTableModel where getColumnClass return String – javapowered Jul 20 '11 at 21:23
feedback

2 Answers

up vote 2 down vote accepted

You can calculate row height using table's font height.

FontMetrics metrics = table.getFontMetrics(); 
int fontHeight = metrics.getHeight();
table.setRowHeight( fontHeight + delta );

delta can be anything you're comfortable with :)

link|improve this answer
getFontMetrics should accept argument, I wrote this way FontMetrics metrics = table.getFontMetrics(table.getFont()); – javapowered Jul 20 '11 at 13:24
hm is it possible to calculate how much "delta" do I need? I.e. how much extra space cell editor reserves for the border? – javapowered Jul 22 '11 at 13:51
Border.getBorderInsets method can help you, I think – eugener Jul 22 '11 at 15:18
feedback

You can modify the Font use by your cell editor.

Font font = new Font("Helvetica", Font.PLAIN, 22);
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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