我正在使用 RadGrid。有一个名为 Comments 的列,我目前将其作为 Y/N,如果他们将鼠标悬停在 Comments 标题行上,我想添加一个工具提示。有没有一种简单的方法可以做到这一点?对于名为 CommentsY/NI 的列,其值为 Y/N。我还有一个名为“评论”的专栏,我正在隐藏它。当用户将鼠标悬停在 CommentsY/N 上时,我喜欢显示 Comments 字段值。
到目前为止,我有以下内容:
我想要做的是将鼠标悬停在 Notes 列行上,然后显示 Comments,这也是网格上的绑定列。由于注释可能很长,我想在用户将鼠标悬停在注释上时显示它。一旦悬停工作,我将使评论字段不可见。这就是我所拥有的,但问题是当我将鼠标悬停在注释上时,我只看到它说 Cmmts 并且它不显示给定行的注释内容。
if (e.Item is GridDataItem)
{
GridDataItem gridItem = e.Item as GridDataItem;
foreach (Telerik.Web.UI.GridColumn column in WtrClients.MasterTableView.RenderColumns)
{
if (column is GridBoundColumn)
{
//this line will show a tooltip based on the CustomerID data field
if (column.UniqueName == "Notes")
{
gridItem[column.UniqueName].ToolTip = "Cmmts:" +
Convert.ToString(gridItem.OwnerTableView.DataKeyValues[gridItem.ItemIndex]["Comments"]);
}
}
}
}