在对Footable表进行排序时使用带有 colspans 的行时出现排序问题。
我的表结构:
<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>
我有一个复选框可以打开/关闭 colspan 行,但是如果显示它们并且您按列排序,则所有 colspan 行都会组合在一起。
有没有一种方法可以正确地将 colspan(描述)行放置在正确的数据行下方?