I have an JTable component where I display some data. One of my column is a string, which is too long for my cell. How can I make cells in that column multi-line?

link|improve this question

72% accept rate
feedback

2 Answers

up vote 2 down vote accepted

put into TableCell f.e. JTextArea or another JComponents that allows multiline output

link|improve this answer
feedback

There are some examples on the Internet about how to do this. Seems like its a pretty common task developers try and accomplish with JTables. Basically what you want to do is implement your own cell editor using AbstractCellEditor/JTextArea. Heres a link to one such example with source code:

http://www.jroller.com/santhosh/entry/multiline_in_table_cell_editing1

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.