1

quicksearchjQuery プラグインを使用して検索 (行の表示/非表示) するテーブルがあります。同じテーブルで、ユーザーが行の切り替えボタン(ボタンがテーブルの外にある)をクリックした場合、チェックボックス(テーブルの最初の列)がチェックされているすべての行を表示/非表示にする必要があります。テーブル内のデータを検索すると、非表示の行 (チェックボックスがオンになっている) が表示されます。どうすれば両方の機能を実現できますか。

すべての非表示の行 (チェックボックスがオンになっており、ユーザーが [行の切り替え] をクリックした場所) は、ユーザーがテーブル内のデータを検索するときに非表示のままになり、その逆も同様です。

以下は私のjQueryです:

$(function () {
    $('input#gridSearch').quicksearch('#<%=gvActivities.ClientID %> tbody tr');

    $('.showhiderows').click(function () {
        $('#<%=gvActivities.ClientID %>').find("input[type=checkbox]:checked").closest('tr').toggle();
    });
});

チェックボックスは、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">
          &nbsp;
      </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>
4

1 に答える 1

2

解決できると思いますが、

$("#showhidetr").on("click", function(){
  if($(this).is(':checked')){
    $("#myTable").find("input[type='checkbox']").each(function(){
      if($(this).is(':checked')){
        $(this).parent().parent().hide();
      }
    })
  } else {
    $("#myTable").find("input[type='checkbox']").each(function(){
      if($(this).is(':checked')){
        $(this).parent().parent().show();
      }
    })
  }
})

<input type='checkbox' id="showhidetr">
<table id="myTable">
  <tr>
   <td><input type='checkbox'></td>
   <td>Mary</td>
  </tr>
  <tr>
    <td><input type='checkbox'></td>
    <td>John</td>
  </tr>
  <tr>
    <td><input type='checkbox'></td>
    <td>Michael</td>
  </tr>
</table>

showhidetr チェックボックスをクリックすると、スクリプトはテーブルでチェックされているチェックボックスを探し、その tr を非表示にします。

于 2013-02-10T03:52:25.870 に答える