Does anyone know how I could add a row to a datagrid and specify the colspan?
ie:
Say I have a Grid that displays like this: I want to add a cutom row with whatever content that spans 3 columns. Much like if I was buiding an html table
| col1 | col2 | col3 |
| Bill | value | hello |
| here is an autorow |
--} html equivelant would be:
<table>
<tr><td> Bill </td><td> value </td><td> hello </></tr>
<tr><td colspan=3> here is an autorow </td></tr>
</table>
Any ideas or suggestions would be great.
Thanks...!
ie:
Say I have a Grid that displays like this: I want to add a cutom row with whatever content that spans 3 columns. Much like if I was buiding an html table
| col1 | col2 | col3 |
| Bill | value | hello |
| here is an autorow |
--} html equivelant would be:
<table>
<tr><td> Bill </td><td> value </td><td> hello </></tr>
<tr><td colspan=3> here is an autorow </td></tr>
</table>
Any ideas or suggestions would be great.
Thanks...!