I need to display custom data below each row in a table. This is what I have tried:
<table class="table" id="foo">
<tr>
<th>
Name
</th>
<th>
Detail
</th>
<th>
Custom
</th>
<th>
Properties
</th>
<th></th>
</tr>
<tr>
<td>
Col0
</td>
<td>
Col1
</td>
<td>
Col2
</td>
<td>
Col3
</td>
<td>
Col4
</td>
</tr>
<tr>
someData2
</tr>
</table>
Here is the output I am getting:
someData2
Name Detail Custom Properties
Col0 Col1 Col2 Col3 Col4
I want someData to be positioned underneath its respective row (Col0, Col1, etc.), but without restricting its width to one column only. Any suggestions on how I can achieve this?