If I have a table whose column count cannot be determined during the creation of the table, and whose rows may sometimes not contain enough data to fill each column, is there a way to have the last cell in each row auto-size?
I would prefer to not have to use colspan on the last cell in each row, because again, the max number of columns is not predictable when the table is being drawn.
For example:
-----------------------------------
NEW ROW | FOO | BAR | <- last cell should span the length of the table
-----------------------------------
NEW ROW | FOO | BAR | TEST | BLAH | <- no spanning needed, as it contains the most cols
-----------------------------------
NEW ROW | FOO | BAR | TEST | <- last cell should span the length of the table
-----------------------------------