GridView点击行触发SelectedIndexChanged事件
Posted asdyzh
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了GridView点击行触发SelectedIndexChanged事件相关的知识,希望对你有一定的参考价值。
1、在<% @Page ...... %>指令中添加 EnableEventValidation="false"
2、在RowDataBound事件中添加
protected void GridView1_RowDataBound(object sender, GridViewRowEventArgs e)
{
switch (e.Row.RowType)
{
case DataControlRowType.DataRow:
e.Row.Attributes["style"] = "cursor:hand";
#region //点击行触发SelectedIndexChanged事件
PostBackOptions myPostBackOptions = new PostBackOptions(this);
myPostBackOptions.AutoPostBack = false;
myPostBackOptions.PerformValidation = false;
myPostBackOptions.RequiresjavascriptProtocol = true; //加入javascript:头
String evt = Page.ClientScript.GetPostBackClientHyperlink(sender as GridView, "Select$" + e.Row.RowIndex.ToString());
e.Row.Attributes.Add("onclick", evt);
#endregion
break;
}
}
3、在第一二步之后就可以在SelectedIndexChanging和SelectedIndexChanged事件中添加处理逻辑了。
以上是关于GridView点击行触发SelectedIndexChanged事件的主要内容,如果未能解决你的问题,请参考以下文章
Gridview 行命令事件未使用 jquery mobile 触发
android gridview 如何点击item中的一个组合控件的图标按钮触发整个item