GridViewの行の任意のポイントをユーザーが押すと、選択ボタンの代わりに行が選択される機能を実装しています。
それを実装するには、次のコードを使用しています。
_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, "");
}
}
_
上記のコードには、次の問題があります。
EnableEventValidation
がfalse
に設定されている場合にのみ正常に機能します。SelectedIndexChanged
は、(すべてのポストバックで)ページの_Page_Load
_でGrid.DataBind()
が呼び出された場合にのみ起動されます。私は何か間違っていますか?より良い実装はありますか?
編集:EnableEventValidation
がtrue
に設定されている場合、次のエラーが表示されます。
無効なポストバックまたはコールバック引数。イベント検証は、構成内またはページ内の<%@ Page EnableEventValidation = "true"%>を使用して有効にします。セキュリティ上の理由から、この機能は、ポストバックイベントまたはコールバックイベントの引数が、それらを最初にレンダリングしたサーバーコントロールから発信されていることを確認します。データが有効で期待される場合は、ClientScriptManager.RegisterForEventValidationメソッドを使用して、検証用のポストバックまたはコールバックデータを登録します。
これは、データバインディングだけでなく、すべてのポストバックで追加する必要があります。したがって、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
RowCreated
で実行する代わりに、Render()
で実行できます。そうすれば、GetPostBackClientHyperlink
でregisterForEventValidation
のオーバーロードを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);
}
<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>
これを試してグリッドに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に設定し、ページロードでグリッドデータバインディングを実行します。