我正在使用以下代码来使gridview的整个行都可单击:

 protected void gridMSDS_RowDataBound(object sender, GridViewRowEventArgs e)
    {
        if (e.Row.RowType == DataControlRowType.DataRow)
        {
            e.Row.Attributes["onmouseover"] = "this.style.cursor='pointer';this.style.textDecoration='underline';this.style.backgroundColor='#EEFF00'";
            e.Row.Attributes["onmouseout"] = "this.style.textDecoration='none';this.style.backgroundColor='White'";

            e.Row.Attributes["onclick"] = ClientScript.GetPostBackClientHyperlink(this.gridMSDS, "Select$" + e.Row.RowIndex);
        }
    }

效果很好,除了现在我要向网格添加编辑功能。这可行,但是当我同时打开了行可点击和编辑功能时,单击“编辑”链接按钮通常会触发行单击事件,反之亦然。

因此,除了指定的列外,如何使行可单击?

更新:
这就是我正在使用的。

基于贾斯汀的解决方案:
 List<int> notClickable = new List<int>();
 {
       notClickable.Add(0);
       notClickable.Add(2);
 }

 for(int i = 0; i < e.Row.Cells.Count; i++)
 {
     if (!notClickable.Contains(i))
     {
          e.Row.Cells[i].Attributes["onclick"] = Page.ClientScript.GetPostBackClientHyperlink(this.gridMSDS, "Select$" + e.Row.RowIndex);
     }
 }

最佳答案

诀窍是注册需要单击的特定列上的单击。下面的代码假定您知道应该单击的索引(在这种情况下为0)。

e.Row.Cells[0].Attributes["onclick"] = Page.ClientScript.GetPostBackClientHyperlink(this.gridMSDS, "Select$" + e.Row.RowIndex);

关于c# - Gridview的行可点击除了第一列?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/5781861/

10-12 17:25