为 devexpress gridview 的每个单元格设置工具提示
如何在 asp.net & 中为 devexpress gridview 的每个单元格设置工具提示c#.net
how to set tool tip for each cell of a devexpress gridview in asp.net & c#.net
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
首先,设置网格的“OnHtmlDataCellPrepared”属性,如下所示:
然后在代码隐藏中设置单元格的“title”属性:
First, set the "OnHtmlDataCellPrepared" property of your grid, like this:
Then set the "title" attribute of the cells in your codebehind:
与 mhughes 相同的概念,但在我的例子中,gridView 是动态创建的,所以我必须在事后添加事件处理程序。
_gridview.HtmlDataCellPrepared += new ASPxGridViewTableDataCellEventHandler(_gridview_HtmlDataCellPrepared);
void _gridview_HtmlDataCellPrepared(对象发送者,ASPxGridViewTableDataCellEventArgs e)
{
if (e.CellValue != null)
e.Cell.Attributes.Add("标题", e.CellValue.ToString());
}
Same concept as mhughes but in my case the gridView is dynamically created so I had to add the event handler after the fact.
_gridview.HtmlDataCellPrepared += new ASPxGridViewTableDataCellEventHandler(_gridview_HtmlDataCellPrepared);
void _gridview_HtmlDataCellPrepared(object sender, ASPxGridViewTableDataCellEventArgs e)
{
if (e.CellValue != null)
e.Cell.Attributes.Add("title", e.CellValue.ToString());
}