JavaFX 8: How to avoid trimming text in the header of a TableView column?

When I double-click the separator in the header to change the width of the column, the column heading is not enough to display the column name if the text length in the cell is less than the column name. This name will be cropped.

enter image description here

I want to resize a column to the width of the text in the column heading if all the text in its cells is shorter than that heading name.

Is there a solution for this problem?

+4
source share
1 answer

This does not happen with jdk8u20, at least not on Linux. Perhaps this error has been fixed in recent versions.

0
source

All Articles