thead not aligned with tbody in scrollable table

Hi,

We are seeing a problem with scrollable tables with headers. The problem is that the headers are not aligned with the contents. The problem only occurs when you have “APP_UI_PROPERTY.TABLEVIEW_WC_DEFAULT_SCROLLABLE” set to true, and of course when you have a table view with headers.

A simplified css way to solve this would be to wrap both thead and tbody cells in a DIV and give that a fixed width. E.g.

<thead>
<tr>
<th><div style="width: XX">title here</div></th>
</tr>
</thead>
<tbody>
<tr>
<td><div style="widht: XX">contents here</div></td>
</tr>
</tbody>

But that is not the way the html is structured in Servoy. Is there a way to fix the display in the current version?

we already fixed this for the next 6.1.1 release