Page 1 of 1

Databand multiple rows

Posted: Mon Jun 04, 2012 3:17 am
by Stephan1
Hi,

i got a Datatable which contains serialnumbers.

The Datatable ist printed in a Databand.

Example:

Databand (Serials)
SN: ABCDEFG
SN: jkdfjlasjdkl2343
SN: 20394234asd
SN: kldjkjdfFASD"
SN: akldfjaskd121234

My question is, is it possible to print the Serials Databand in a horizontal way?. Otherwise i could have a page full of serials.

This should be the Outpunt if possible: The serials could have differente length of chars. So sometimes 3 fit in a row sometimes 4.

Databand (Serials)
SN: ABCDEFG, SN: jkdfjlasjdkl2343, SN: 20394234asd
SN: kldjkjdfFAS, SN: akldfjaskd121234

It's just to safe space on the page.

Thx for helping.







Databand multiple rows

Posted: Tue Jun 05, 2012 7:00 am
by Alex K.
Hello,

As a way you can use the Func.EngineHelper.JoinColumnContent() function:

Code: Select all

{Func.EngineHelper.JoinColumnContent(DatatableName, "ColumnName", ", SN: ")}
Thank you.

Databand multiple rows

Posted: Tue Jun 05, 2012 7:18 am
by Stephan1
Aleksey wrote:Hello,

As a way you can use the Func.EngineHelper.JoinColumnContent() function:

Code: Select all

{Func.EngineHelper.JoinColumnContent(DatatableName, "ColumnName", ", SN: ")}
Thank you.
Thx Aleksey for that Info.

At which Version is "Func.EngineHelper.JoinColumnContent" available ?

I tried using your Sample Project, but here we're using a Version of 2011.2.1020.

Thx

Databand multiple rows

Posted: Wed Jun 06, 2012 1:49 am
by Alex K.
Hello,

This function was been added in last release. Please check the last prerelease build.

Thank you.