我有 6 个数据表,页面上有一个数据表配置,所有五个表的基本布局如下:
<table>
<thead>
<tr>
<th>COL_1</th>
<th>COL_2</th>
<th>COL_1</th>
<th>COL_1</th>
<th>COL_1</th>
</tr>
</thead>
<tbody>
<tr><td></td>
<td></td>
<td></td>
<td></td>
<td></td>
</tr>
</tbody>
</table>
我的数据表配置选项如下:
{
order: [[5, "desc"], [2, "asc"]]
.......
}
我的问题是我需要按表按列排序。例如,在表 1 中,我想在第 3 列和第 4 列上为第二个表排序第 1 列和第 4 列,在第 0 列和第 3 列上排序第三列等等,有没有办法在每个数据表没有六个不同配置的情况下做到这一点?