为 devexpress gridview 的每个单元格设置工具提示

发布于 2024-08-30 16:12:35 字数 66 浏览 3 评论 0原文

如何在 asp.net & 中为 devexpress gridview 的每个单元格设置工具提示c#.net

how to set tool tip for each cell of a devexpress gridview in asp.net & c#.net

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

翻了热茶 2024-09-06 16:12:36

首先,设置网格的“OnHtmlDataCellPrepared”属性,如下所示:

<dx:ASPxGridView ID="ASPxGridView1" runat="server" 
    OnHtmlDataCellPrepared="ASPxGridView1_HtmlDataCellPrepared">
</dx:ASPxGridView>

然后在代码隐藏中设置单元格的“title”属性:

protected void ASPxGridView1_HtmlDataCellPrepared(object  sender,  DevExpress.Web.ASPxGridView.ASPxGridViewTableDataCellEventArgs  e)  
{
    e.Cell.Attributes.Add("title", "Your Tooltip");
}

First, set the "OnHtmlDataCellPrepared" property of your grid, like this:

<dx:ASPxGridView ID="ASPxGridView1" runat="server" 
    OnHtmlDataCellPrepared="ASPxGridView1_HtmlDataCellPrepared">
</dx:ASPxGridView>

Then set the "title" attribute of the cells in your codebehind:

protected void ASPxGridView1_HtmlDataCellPrepared(object  sender,  DevExpress.Web.ASPxGridView.ASPxGridViewTableDataCellEventArgs  e)  
{
    e.Cell.Attributes.Add("title", "Your Tooltip");
}
成熟稳重的好男人 2024-09-06 16:12:36

与 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());
}

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文