我想在单击整行的任何部分时触发网格 View 的选定索引更改事件
就像我不想显示选择命令,而不是用户可以单击行的任何部分意味着该行的任何列都可以被选中
感谢您的帮助
最佳答案
您没有提供语言,所以我将在VB.NET中向您展示一个示例(易于转换为C#):
通过以下方式处理GridView的RowCreated事件:
Private Sub GridView1_RowCreated(ByVal sender As Object, ByVal e As System.Web.UI.WebControls.GridViewRowEventArgs) Handles GridView1.RowCreated
Select Case e.Row.RowType
Case 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") = Me.Page.ClientScript.GetPostBackClientHyperlink(DirectCast(sender,GridView), "Select$" & e.Row.RowIndex)
End Select
End Sub
重要的一行是:
e.Row.Attributes("onclick") = Me.Page.ClientScript.GetPostBackClientHyperlink(DirectCast(sender, GridView), "Select$" & e.Row.RowIndex)
C#
e.Row.Attributes["onclick"] = Page.ClientScript.GetPostBackClientHyperlink((GridView)sender, "Select$" + e.Row.RowIndex)
关于javascript - 单击整行的任何部分时,触发网格 View 的选定索引更改事件,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/8503361/