RADGrid 中的标题样式

发布于 2024-12-17 13:56:54 字数 126 浏览 3 评论 0 原文

我们如何在radgrid中设置标题的样式?

以下是我尝试设置标题文本的方法:

radExport.MasterTableView.Caption = "Reports";

How can we set style for caption in radgrid?

Following is how I am trying to set the caption text:

radExport.MasterTableView.Caption = "Reports";

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

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

发布评论

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

评论(3

养猫人 2024-12-24 13:56:55

您还可以编写自己的 HTML 代码,并通过导出按钮单击时的 RadGrid.MasterTableView.Caption 进行绑定。它可以是一个徽标或一些您希望将其放在文件顶部的声明。

string firstHeaderLine = "<div id='master' style='color:black; text-align:left;'>Company Name: XYZ</div>";
firstHeaderLine += "<div id='master' style='color:black; text-align:left;'>Date Report Generated: " + DateTime.Now.ToShortDateString() + "</div>";
firstHeaderLine += "<div id='master' style='color:black; text-align:left;'>Report Generated by: XYZ </div>";
RadGrid1.MasterTableView.Caption = firstHeaderLine;

希望这会给你一个想法。

You can also write your own HTML code and bind through RadGrid.MasterTableView.Caption at the Export Button Click. It can be a logo or some statement that you would like to have it at the top of the file.

string firstHeaderLine = "<div id='master' style='color:black; text-align:left;'>Company Name: XYZ</div>";
firstHeaderLine += "<div id='master' style='color:black; text-align:left;'>Date Report Generated: " + DateTime.Now.ToShortDateString() + "</div>";
firstHeaderLine += "<div id='master' style='color:black; text-align:left;'>Report Generated by: XYZ </div>";
RadGrid1.MasterTableView.Caption = firstHeaderLine;

Hope this will give you an idea.

顾忌 2024-12-24 13:56:54

我相信您可以像这样调整样式:

<style type="text/css">
    .MasterTable_Default caption {
        color: red;
        }   
    .DetailTable_Default caption {
        color: blue;
        }
</style>

这里有一些讨论它的文档:
http://www.telerik.com/help /aspnet/grid/radgrid-telerik.webcontrols.gridtableview-caption.html

I believe you can adjust the styling like this:

<style type="text/css">
    .MasterTable_Default caption {
        color: red;
        }   
    .DetailTable_Default caption {
        color: blue;
        }
</style>

Here's some documentation that talks about it:
http://www.telerik.com/help/aspnet/grid/radgrid-telerik.webcontrols.gridtableview-caption.html

懷念過去 2024-12-24 13:56:54

如果您只想在导出时添加样式,请查看 这个

If you want to add style while only when exporting take a look at this

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