How to implement jtable with variable row-height

点点圈 提交于 2019-12-05 16:04:05

问题


None of the answers to two previous questions (here and here) resolve my problem.

I have a multi-column jtable for which I want to display string-content of some columns over more than one line within the cell based on newline char's ("\n") within the string. The number of newlines per string is random, known only at run-time. Only the affected row must be adjusted across all columns to the new height. There may be a different number of lines per affected column, and the row-height needs to be adjusted to the maximum height of these, across the columns.

How do I do this?
If possible some sample code would be very much appreciated.
TIA


回答1:


If I got you right, I think you need a MultilineCellRenderer . There are already plenty of examples around. Normally they are based on a JTextArea to get the line wrap functionality.

I haven't used it myself yet, but here is an example, which looks kinda good at first view:

MultilineCellRenderer



来源:https://stackoverflow.com/questions/3733679/how-to-implement-jtable-with-variable-row-height

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!