문제

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

올바른 솔루션이 없습니다

다른 팁

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.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top