我有一个使用quicksearch
jQuery 插件搜索(显示/隐藏行)的表。在同一个表中,如果用户单击切换行按钮(按钮在表外),我必须显示/隐藏选中复选框(表中的第一列)的所有行。当我在表中搜索数据时,隐藏的行(选中的复选框)变得可见。我怎样才能实现这两种功能。
当用户在表中搜索数据时,所有隐藏行(选中复选框并且用户单击“切换行”)将保持隐藏状态,反之亦然。
以下是我的 jQuery:
$(function () {
$('input#gridSearch').quicksearch('#<%=gvActivities.ClientID %> tbody tr');
$('.showhiderows').click(function () {
$('#<%=gvActivities.ClientID %>').find("input[type=checkbox]:checked").closest('tr').toggle();
});
});
Checkbox 是 GridView 中的第一列。
显示/隐藏选定行的按钮:
<input type="button" id="btnShowHide" class="showhiderows" value="Toggle Selected Rows" />
表结构,只是标题和第一行:
<table class="gvv1" id="MainContent_gvActivities">
<tr style="background-color: buttonface;">
<th scope="col">
</th>
<th scope="col">
Cluster
</th>
<th scope="col">
Activity
</th>
<th scope="col">
Data
</th>
<th scope="col">
Target
</th>
<th scope="col">
Achieved
</th>
</tr>
<tr>
<td>
<input id="longIdGeneratedByCode" type="checkbox"/>
</td>
<td style="width: 50px;">
ER.
</td>
<td style="width: 250px;">
Establishment
</td>
<td style="width: 460px;">
Number of
</td>
<td style="width: 70px;">
Text
</td>
<td style="width: 70px;">
Text2
</td>
</tr>
</table>