如何在数据网格行上绑定工具提示
本文关键字:绑定 工具提示 网格 数据网 数据 | 更新日期: 2023-09-27 18:07:24
我试图绑定数据网格行与工具提示。在什么情况下我应该写代码?行创建的事件不持有我的数据绑定和返回空白。代码参考如下:
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);
}
}
请帮。
您可以右转行绑定事件,例如:
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);
}
}
}
找到答案了。它应该写在RowDataBound下面。