views:

19

answers:

1

I've been struggling to find an answer to this question. That is, how would I have a static row that doesn't sort or move up and down? The reason for this is to have repeated headers in a very large table. The multiple headers Would anyone be able to help? http://tablesorter.com/docs/

 $("#dataTable").tablesorter({
                sortList: [[0, 0], [1, 0]],
                widgets: ['zebra', 'rowHover'],
                widgetZebra: { css: ["even", "odd"] },
                widgetRowHover: { css: 'rowhover' }
            });

..
<table>
    <tr>
        <td>
        Row 1
        </td>
    </tr>
    <tr>
        <td>
        Row 2
        </td>
    </tr>
    <tr>
        <td>
        Static Row
        </td>
    </tr>
    <tr>
        <td>
        Row 3
        </td>
    </tr>
</table>
A: 

It sounds like you might want to break this table into 2 tables and adjust the columns widths if possible. Especially if you are not grouping rows.

Robert