表格排序器,当我在thead中有更多行时进行排序

时间:2009-10-01 05:17:21

标签: tablesorter

我有一个超过2行的表格,我只想对第2行元素进行排序,如何使用表格分类器实现?请帮帮我。

2 个答案:

答案 0 :(得分:0)

我有类似的情况,但我只使用第一行用于tablesorter。第二行用于选择过滤器,所以我总是希望它保留在第2行。将两行放入但是制作第二行单元而不是<th>单元格就可以了。

<table id="table" class="tablesorter">
   <thead>
      <tr>
         <th title="Click to sort by ID ">ID</th>
         <th title="Click to sort by Name ">Name</th>
         <th title="Click to sort by Description ">Description</th>
      </tr>
      <tr>
         <td><input type="text" name="org_id"/></td>
         <td><input type="text" name="name"/></td>
         <td><input type="text" name="business_desc"/></td>
      </tr>
   </thead>
   <tbody>
      <tr>
         <td>Org 1</td>
         <td>Org Name</td>
         <td>Org Desc</td>
      </tr>
   </tbody>
</table>

答案 1 :(得分:0)

默认情况下,这将是你的最后一次。

将其更改为您可以使用的第一个。 var table = $('#stu_view_example1')。DataTable({          orderCellsTop:true 要么          “bSortCellsTop”:是的     });