Your achievements

Level 1

0% to

Level 2

Tip /
Sign in

Sign in to Community

to gain points, level up, and earn exciting badges like the new
Bedrock Mission!

Learn more

View all

Sign in to view all badges

Adobe Summit 2023 [19th to 23rd March, Las Vegas and Virtual] | Complete AEM Session & Lab list

Loop Through Subform Instances

Avatar

Level 1

I'm very new to Javascripts and Livecycle,

I have 4 fields (field1.rawValue, field2.rawValue, field3.rawValue & field4.rawValue wrapped in Subform1.  I'm attempting to sum values entered in fields 1, 2, & 3 into field 4 with the following script.

var myFields = field1.field2.field3.resolveNodes("Subform1[*]");

var sum = 0.0

for (var i = 0; i < myFields.length; i++) {

sum += myFields.item(i).field4.rawValue;

}

this.rawValue = sum;

When a new instance is added field4(1) should be the sum of field4(0) + field(1) + field2(1) + field3(1).

Thanks,

0 Replies

Avatar

Level 4

Hey all!

The blog was extremely helpful!  Does anyone know how to loop through more than one field in a subform?

I am trying to create code where we check for multiple empty fields, looping through the subforms.

Any ideas?

Thanks!

Jodi