cancel
Showing results for 
Search instead for 
Did you mean: 

Adobe form - Split internal table data & dis on the right and left corner

Former Member
0 Kudos

HI ,

I have a form where i am populating the data via an Internal Table.

The concern i have is i have 100 rows in the table and i want to print the first 10 rows on the right hand side of the page and the next 10 rows on the Left hand side of the page. I want to do this dynamically on multiple pages during run time based on the volume of data in the internal table.

I am sure i cannot dynamically change the interface of the form to allow multiple internal table , Please suggest if there is any other solution.

Thanks in advance

Tk

Edited by: tarunk on Jan 16, 2012 5:56 PM

Accepted Solutions (0)

Answers (1)

Answers (1)

former_member389677
Active Participant
0 Kudos

HI Tarunk,

You can write script in the initialization event of the particular row of table.

var index = this.index+1 ;

if ((index%10)%2 eq 1)

{

this.para.hAlign = "right";

}

else

{

this.para.vAline = "left"

}

Former Member
0 Kudos

Hi,

Thank you very much for the input, But my concern is

I have a table with 120 records.

i have three columns which i have it on the right side as well as on the Left side of the page.

EX:

Right Side Left Side

Col1 col2 col3 col1 col2 col3.

Now what i want to do is the first ten rows of the internal table data i want to print it on the Right Side and the Next 10 rows on the Left Side in the same page .

I want to do this on Multiple pages.

please suggest.

Thanks,

Tk