如何在一个文本框中连接多个由“/”分隔的字段在 Telerik 报道中

发布于 2024-12-04 01:53:36 字数 55 浏览 3 评论 0原文

我想知道如何在 Telerik 报告中的一个文本框中连接多个字段,在文本框表达式中用“/”分隔。

I want to know how to concatenate more fields in one text box in Telerik reporting separated by "/" in expression of text box.

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

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

发布评论

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

评论(1

邮友 2024-12-11 01:53:36

当您设置文本框的Value时,您可以使用表达式来连接多个字段。您可以使用纯表达式来完成此操作,例如:

=Fields.FirstField + '/' + Fields.SecondField

或者您可以使用嵌入表达式:

{Fields.FirstFIeld}/{Fields.SecondField}

您可以查看他们的文档以获取有关 表达式嵌入表达式。

When you set the Value of a text box, you can use expressions to concatenate multiple fields. You can do it with plain expressions such as:

=Fields.FirstField + '/' + Fields.SecondField

or you can use embedded expressions:

{Fields.FirstFIeld}/{Fields.SecondField}

You can see their documentation for more information about expressions and embedded expressions.

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