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
Databand multiple rows
Hello,
As a way you can use the Func.EngineHelper.JoinColumnContent() function:
Thank you.
As a way you can use the Func.EngineHelper.JoinColumnContent() function:
Code: Select all
{Func.EngineHelper.JoinColumnContent(DatatableName, "ColumnName", ", SN: ")}
- Attachments
-
- 1910.SampleReport.mrt
- (14.75 KiB) Downloaded 350 times
Databand multiple rows
Thx Aleksey for that Info.Aleksey wrote:Hello,
As a way you can use the Func.EngineHelper.JoinColumnContent() function:Thank you.Code: Select all
{Func.EngineHelper.JoinColumnContent(DatatableName, "ColumnName", ", SN: ")}
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
Hello,
This function was been added in last release. Please check the last prerelease build.
Thank you.
This function was been added in last release. Please check the last prerelease build.
Thank you.