I am using a datagrid to display some data. I need to
create 2 header rows for this grid with columns of
varying spans. In html it would be the following.
<Table>
<tr>
<td colspan=8>Offic ial Impact Summary</td>
</tr>
<tr>
<td colspan=2></td>
<td colspan=3>Progr am Totals</td>
<td colspan=3>Offic ial Totals</td>
</tr>
<tr><td></td>...
Is this kind of thing possible with a datagrid and if so
how do I do it.
Thanks,
Billy Jacobs
create 2 header rows for this grid with columns of
varying spans. In html it would be the following.
<Table>
<tr>
<td colspan=8>Offic ial Impact Summary</td>
</tr>
<tr>
<td colspan=2></td>
<td colspan=3>Progr am Totals</td>
<td colspan=3>Offic ial Totals</td>
</tr>
<tr><td></td>...
Is this kind of thing possible with a datagrid and if so
how do I do it.
Thanks,
Billy Jacobs
Comment