Sorry for the name, I did not know how to describe it better.
I have the following table:
<tr class="row-vm">
<td>...</td>
<td>...</td>
...
</tr>
<tr class="row-details">
<td colspan="8">
<div class="vmdetail-left">
...
</div>
<div class="vmdetail-right">
...
</div>
</td>
</tr>
Each second row contains details for the first row. By default, it is hidden using CSS, but I can open it using jQuery.
What I would like to achieve : table sorting is similar to this jQuery plugin: http://tablesorter.com/docs/ p>
Problem : The plugin must “glue” all pairs of lines and move them together. Sorting should be performed only with the data of the first row ( .row-vm), ignoring the contents of the second row ( .row-details).
Is there a jQuery plugin that supports this?