In earlier releases, we could do columns autowidth through style
table {
width: 100%
}
Can be repeated here:
http://demo.vaadin.com/6.5.7/sampler#TableSorting
For example, with FireBug
before:
<table class="v-table-table">
...
after:
<table class="v-table-table" style="width:100%">
...
Then when we change the column width, all table columns width is fitting.
In version 6.6.0, this mechanism is broken, now with this style the columns is sliding apart.
http://demo.vaadin.com/6.6.0/sampler#TableSorting
What is now an alternative to repeat the desired behavior to us?