I would like to create a grid that has multiple lines per entry. There are 4 colums in the line. Column 1 is type, column 2 is date, column 3 is a value, column 4 is a value. I would like to add a new column 5 (short description) that will be on the second row spanning the entire grid (basically colspan=4). Is there a simple way to do something like this besides building a complicated template?
EX.
-----------------------------------------------------------------------------
| type | date | val 1 | val 2 |
-----------------------------------------------------------------------------
| Drivers | 1/2/2009 | Cat | Dog |
-----------------------------------------------------------------------------
| My cat likes you |
-----------------------------------------------------------------------------
| Man | 2/2/2009 | Fly | Chimp |
-----------------------------------------------------------------------------
| Something about a man |
-----------------------------------------------------------------------------
EX.
-----------------------------------------------------------------------------
| type | date | val 1 | val 2 |
-----------------------------------------------------------------------------
| Drivers | 1/2/2009 | Cat | Dog |
-----------------------------------------------------------------------------
| My cat likes you |
-----------------------------------------------------------------------------
| Man | 2/2/2009 | Fly | Chimp |
-----------------------------------------------------------------------------
| Something about a man |
-----------------------------------------------------------------------------