I have a table, this table has 3 columns. In each column, there is a table like the picture.
I did a method to generate table, this method receive a list in argument and loop on it to
addCell to the table
I’d like for a line has a instead of 5 columns … 1 + 1 (colspan of 4). When I do a colspan
the 4 first are merged, I’d like merged the 4 last and keep the first.
How can I do this ?
Thanks,


You just need to add the cells to the table in the order that you want them to span. If you add the spanned cells before the first cell then that’s how they’ll appear.