2011-09-05 34 views
0

我試圖用工具提示綁定datagrid行。我應該在哪種情況下編寫代碼?該行創建的事件不會讓我的數據綁定並返回空白。代碼參考如下:如何在datagrid行上綁定工具提示?

protected void gdvActionItemView_RowCreated(object sender, GridViewRowEventArgs e) 
    { 


     e.Row.Cells[2].ToolTip = e.Row.Cells[2].Text; 
     if (e.Row.Cells[2].Text.Length > 100) 
     { 
      e.Row.Cells[2].Text.Substring(0, 100); 
     } 


    } 

請幫忙。

回答

0

找到了答案。它應該寫在RowDataBound下。

1

你可以右鍵行數據綁定的事件,如:

protected void grdUserClone_RowDataBound(object sender, GridViewRowEventArgs e) 
    { 
     if (e.Row.RowType == DataControlRowType.DataRow) 
     { 
      for (int colIndex = 0; colIndex < e.Row.Cells.Count; colIndex++) 
      { 
       e.Row.Cells[colIndex].Attributes.Add("title", e.Row.Cells[colIndex].Text); 
      } 
     } 
    } 
相關問題