Expand my Community achievements bar.

Adobe Summit 2025: AEM Session Recordings Are Live! Missed a session or want to revisit your favorites? Watch the latest recordings now.

Mark Solution

This conversation has been locked due to inactivity. Please create a new post.

SOLVED

Reading Data from a Table using loop

Avatar

Level 4

I have a dynamic table inside the PDF form. I want to loop through the table rows and read the cell contents. I successfully get the rows count in the table. But can't read the values from the cells. I have put editable TextField (txtName) control in each cell and trying to read its value.

screenshot is below.

table_loop_error.jpg

Code I am using is:

form1.Page1.Subform1.btnReadTable::click - (JavaScript, client)

var rowCount = MyTable._Row1.count;
app.alert("Row Count: " + rowCount);
var i = 0;

for(i=0 ; i<rowCount ; i++)
{
    //app.alert(MyTable.Row1[i].txtName.rawValue); // NOT WORKING
   
    app.alert(MyTable.Row1.txtName.rawValue); // WORKING, But just giving the value for the first row.
}

Please tell me how can I get the value of each name in every row by looping.

Thanks in advance.

-

Abhinav

1 Accepted Solution

Avatar

Correct answer by
Level 10

Hi, Abhinav,

You need to resolve the node for the particular instance of i. The syntax is:

xfa.resolveNode("MyTable.Row1[" + i  + "].txtName").rawValue;

There is an example here that will show the loop in action:

http://www.assuredynamics.com/index.php/category/portfolio/two-way-binding-in-tables/

Hope that helps,

Niall

Assure Dynamics

View solution in original post

2 Replies

Avatar

Correct answer by
Level 10

Hi, Abhinav,

You need to resolve the node for the particular instance of i. The syntax is:

xfa.resolveNode("MyTable.Row1[" + i  + "].txtName").rawValue;

There is an example here that will show the loop in action:

http://www.assuredynamics.com/index.php/category/portfolio/two-way-binding-in-tables/

Hope that helps,

Niall

Assure Dynamics

Avatar

Level 4

That works.

Thanks a lot Niall O'Donovan

-

Abhinav