Is it posible to do colspan in table object?

Hello,
I’m trying to do this:

ColumnA |ColumnB

Stuff in a | Stuff in B
This line should be colspan=2

In html it would be easy:

<html>
<body>
<table border=1>
 <tr>
 <th>ColumnA</th><th>ColumnB</th>
 </tr>
 <tr>
 <td>Stuff in a</td>
 <td>Stuff in B</td>
 </tr>
 <tr>
 <td colspan=2>This line should be colspan=2</td>
 </tr>
 </table>
</body>
</html>

But how can I do this with IT Mill and Table?

Table -component can not do that, but it is a valid feature request (want to write a ticket to dev.itmill.com?).

GridLayout -component supports col and rowspans. Check if it is suitable for your application. If it is not suitable as is, would it be suitable with some CSS tweaking?

That would be a nice feature. Maybe I write a ticket.

I did it with GridLayout and that worked almost as I wanted. I also tried to play around with CSS, but no success. For now, I 'm happy with the GridLayout.