Tablewizard 中的自定义消息

发布于 2024-11-26 20:50:48 字数 60 浏览 0 评论 0原文

当表没有数据时,如何在表向导中显示自定义消息。我正在处理 Telerik Reports Q1 2011。

How do I show a custom message in the table wizard when table has no data. I am working with Telerik Reports Q1 2011.

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

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

发布评论

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

评论(1

吾家有女初长成 2024-12-03 20:50:48

表项有NoDataMessage 属性。您可以添加表达式,然后将显示该消息。此外,您还可以为 NoDataMessage 指定样式。或者进入表项的itemdatabound事件,然后设置无数据消息的值。

private void table1_ItemDataBound(object sender, EventArgs e)
{

    //Take the Telerik.Reporting.Processing.DataItem instance
    Telerik.Reporting.Processing.Table tbl = Telerik.Reporting.Processing.DataItem)sender;

    //Check if data is retrieved by graph or not.
    if (table1.Items.Count == 0)
    {
          //If no data retrieved, then set the NoDataMessage property.
          tbl.NoDataMessage = "No Data Found";
    }
}

关联:
http://www.telerik.com /help/reporting/report-struct-dataitem-set-no-data-message.html

There is NoDataMessage property of table item. You can add epression and the message will be displayed. Also, you can give styling to NoDataMessage. Or go to itemdatabound event of table item and then set the value for no data message.

private void table1_ItemDataBound(object sender, EventArgs e)
{

    //Take the Telerik.Reporting.Processing.DataItem instance
    Telerik.Reporting.Processing.Table tbl = Telerik.Reporting.Processing.DataItem)sender;

    //Check if data is retrieved by graph or not.
    if (table1.Items.Count == 0)
    {
          //If no data retrieved, then set the NoDataMessage property.
          tbl.NoDataMessage = "No Data Found";
    }
}

Link:
http://www.telerik.com/help/reporting/report-structure-dataitem-set-no-data-message.html

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