Tablesorter-problem when multiple rows in thead
Hey there,
I'd like to sort a table with a "fixed" first row. My "trick" is the
following:
<thead>
<tr>
<th>sort criteria 1</th>
<th>sort criteria 2</th>
</tr>
<tr>
<td>fixed content 1</td>
<td>fixed content 2</td>
</tr>
</thead>
<tbody>
... {updated with jQuery / Ajax}
</tbody>
However, this doesn't work. I traced the problem to tablesorter's
buildHeaders-function (line 289). I don't know what the function
"checkCellColSpan" does, but after calling it (line 297) the
$tableHeaders-object is empty.
Any ideas?
Cheers
Manuel