I have a Vaadin Table with some columns that can have widely-varying content widths. Sometimes there might be no rows with more than a few characters in them; other times, there might be rows with enough text to fill a screen.
I want to set an explicit column width to prevent the column from taking up too much space by default. This can be done with Table#setColumnWidth
. However, if all values for the column are shorter than that specified width, I would like to revert to auto-sizing, so that the column is only as wide as it needs to be.
In all cases, I still want the column to be manually resizable.
Essentially, I want to say 'auto-size, up to a maximum width of x
'. Is there a way to do this?
It is possible. You will need to jump into Javascript. SSCCE:
And main.js
You may need to adjust the javascript to suit your needs.