合併行的jQuery表分類器合併兩行的表分類器
每隔一行包含第一行的詳細數據。默認情況下,它是用CSS隱藏的,但我可以用jQuery將它滑動打開。
我想什麼來實現:表排序類似這樣的jQuery插件:http://tablesorter.com/docs/
問題:插件應該「粘合起來」都對行,並把它們一起移動。排序只能使用第一行(.row-vm)的數據,而忽略第二行(.row-details)的內容。
有沒有支持這個jQuery插件?
<tr class="row-vm">
<td>...</td>
<td>...</td>
...
</tr>
<tr class="row-details">
<td colspan="6">
Description data
</td>
</tr>
<tr class="row-vm">
<td>...</td>
<td>...</td>
...
</tr>
<tr class="row-details">
<td colspan="6">
Description data
</td>
</tr>
這應該是正確的答案,小提琴http://jsfiddle.net/q7VL3/真的回答了這個問題 –
Mottie的的tablesorter更新從'expand-child'到'tablesorter-childRow'的默認類 – projeqht