jqueryデータテーブルを使用しています。
テーブルの最初の行ではなく、2 番目の行に並べ替え矢印を適用したいと考えています。
HTML:
<table id="tableUsers" class="datatable">
<thead>
<tr class="filterRow">
<td></td>
<td></td>
<td data-rownum="2">
@Html.Partial("_FilterDropDown", Model.RoleList)
</td>
<td></td>
<td></td>
<td></td>
<td data-rownum="8">
@Html.Partial("_FilterDropDown", Model.EnabledList)
</td>
<td></td>
<td></td>
</tr>
<tr>
<th class="width-110">User name
</th>
<th class="width-110">Name
</th>
<th class="width-110">Role
</th>
<th class="width-200">Email
</th>
<th class="width-90">Created
</th>
<th>DateSort
</th>
<th class="width-80">Enabled
</th>
<th class="width-90">Action
</th>
<th>EnabledSort
</th>
</tr>
</thead>
<tbody>
<tr>
<td></td>
</tr>
</tbody>
</table>
これは次のようになります。
2行目に矢印が欲しいです。ありがとう