I have a sorting issue when using rows with colspans when sorting a Footable table.
My table structure:
<table class="table footable">
<thead>
<tr>
<th>Name</th>
<th data-type="numeric">Date of Birth</th>
<th>Country</th>
</tr>
<thead>
<tbody>
<tr>
<td>Bill Smith</td>
<td data-value="315532800">1/1/1980</td>
<td>England</td>
</tr>
<tr>
<td colspan="3">Some long description of Bill<td>
</tr>
<!-- Many, many other rows -->
</tbody>
</table>
I have a checkbox to toggle the colspan rows on/off, but if they're displayed and you sort by a column, all the colspan rows are grouped together.
Is there a way to sort that correctly places the colspan (description) row beneath the correct data row?