web-dev-qa-db-ja.com

選択ボタンなしでGridViewで全行選択を実装する方法は?

GridViewの行の任意のポイントをユーザーが押すと、選択ボタンの代わりに行が選択される機能を実装しています。

enter image description here

それを実装するには、次のコードを使用しています。

_protected void GridView1_RowDataBound(object sender, GridViewRowEventArgs e)
{
    if (e.Row.RowType == DataControlRowType.DataRow)
    {
        // Set the hand mouse cursor for the selected row.
        e.Row.Attributes.Add("OnMouseOver", "this.style.cursor = 'hand';");

        // The seelctButton exists for ensuring the selection functionality
        // and bind it with the appropriate event hanlder.
        LinkButton selectButton = new LinkButton()
        {
            CommandName = "Select",
            Text = e.Row.Cells[0].Text
        };

        e.Row.Cells[0].Controls.Add(selectButton);
        e.Row.Attributes["OnClick"] =
             Page.ClientScript.GetPostBackClientHyperlink(selectButton, "");
    }
}
_

上記のコードには、次の問題があります。

  • これは、ページのI EnableEventValidationfalseに設定されている場合にのみ正常に機能します。
  • SelectedIndexChangedは、(すべてのポストバックで)ページの_Page_Load_でGrid.DataBind()が呼び出された場合にのみ起動されます。

私は何か間違っていますか?より良い実装はありますか?


編集:EnableEventValidationtrueに設定されている場合、次のエラーが表示されます。

無効なポストバックまたはコールバック引数。イベント検証は、構成内またはページ内の<%@ Page EnableEventValidation = "true"%>を使用して有効にします。セキュリティ上の理由から、この機能は、ポストバックイベントまたはコールバックイベントの引数が、それらを最初にレンダリングしたサーバーコントロールから発信されていることを確認します。データが有効で期待される場合は、ClientScriptManager.RegisterForEventValidationメソッドを使用して、検証用のポストバックまたはコールバックデータを登録します。

30
Homam

これは、データバインディングだけでなく、すべてのポストバックで追加する必要があります。したがって、GridViewの RowCreated -Eventを使用する必要があります。

例えば

(C#):

protected void GridView1_RowCreated(object sender, System.Web.UI.WebControls.GridViewRowEventArgs e)
{
    if (e.Row.RowType == DataControlRowType.DataRow) {
        e.Row.Attributes["onmouseover"] = "this.style.cursor='pointer';this.style.textDecoration='underline';";
        e.Row.Attributes["onmouseout"] = "this.style.textDecoration='none';";
        e.Row.ToolTip = "Click to select row";
        e.Row.Attributes["onclick"] = this.Page.ClientScript.GetPostBackClientHyperlink(this.GridView1, "Select$" + e.Row.RowIndex);
    }
}

(VB.Net):

Private Sub GridView1_RowCreated(ByVal sender As Object, ByVal e As System.Web.UI.WebControls.GridViewRowEventArgs) Handles GridView1.RowCreated
    If e.Row.RowType = DataControlRowType.DataRow Then
        e.Row.Attributes("onmouseover") = "this.style.cursor='pointer';this.style.textDecoration='underline';"
        e.Row.Attributes("onmouseout") = "this.style.textDecoration='none';"
        e.Row.ToolTip = "Click to select row"
        e.Row.Attributes("onclick") = Me.Page.ClientScript.GetPostBackClientHyperlink(Me.GridView1, "Select$" & e.Row.RowIndex)
    End If
End Sub
46
Tim Schmelter

RowCreatedで実行する代わりに、Render()で実行できます。そうすれば、GetPostBackClientHyperlinkregisterForEventValidationのオーバーロードをtrueで使用し、「無効なポストバック/コールバック引数」エラーを回避できます。

このようなもの:

protected override void Render(HtmlTextWriter writer)
    {
      foreach (GridViewRow r in GridView1.Rows)
      {
        if (r.RowType == DataControlRowType.DataRow)
        {
          r.Attributes["onmouseover"] = "this.style.cursor='pointer';this.style.textDecoration='underline';";
          r.Attributes["onmouseout"] = "this.style.textDecoration='none';";
          r.ToolTip = "Click to select row";
          r.Attributes["onclick"] = this.Page.ClientScript.GetPostBackClientHyperlink(this.GridView1, "Select$" + r.RowIndex,true);

        }
      }

      base.Render(writer);
    }
13
alejandrobog
<style type="text/css">
    .hiddenColumn
    {
        display: none;
    }

    .rowGrid
    {
        cursor: pointer;
    }
</style>

<asp:GridView runat="server" ID="GridView1" AutoGenerateColumns="true" >
            <RowStyle CssClass="rowGrid" />
            <Columns>
                <asp:CommandField ButtonType="Button" ShowSelectButton="true" HeaderStyle-CssClass="hiddenColumn"
                    ItemStyle-CssClass="hiddenColumn" FooterStyle-CssClass="hiddenColumn" />
            </Columns>
        </asp:GridView>

<script type="text/javascript">
        $(function () {
            $("#<%= GridView1.ClientID %> tr.rowGrid")
            .live("click", function (event) {
                $(this).find("input[type='button'][value='Select']").click();
            });

            $("#<%= GridView1.ClientID %> input[type='button'][value='Select']")
                .live("click", function (event) {
                    event.stopPropagation();
                });

        });
    </script>
3

これを試してグリッドにOnSelectedIndexChangedイベントを追加してください

   OnSelectedIndexChanged="Grid_SelectedIndexChanged"

そして、コードビハインドについて

 protected void Grid_SelectedIndexChanged(object sender, EventArgs e)
{
    GridViewRow row = gvSummary.SelectedRow;
    //Int32 myvalue= Convert.ToInt32(row.Attributes["ColumnName"].ToString());
   } 

enableViewState = "false"を設定しますが、ここでコードで既に行っている2つのことを実行する必要があります。つまり、EnableEventValidationをfalseに設定し、ページロードでグリッドデータバインディングを実行します。

0
Syeda