one way to do this is, in the Initialize event of the field in second
repeating section, assign the rawValue from the first repeating
section..For example..initialize event of Field2.. Field2.rawValue =
Field1.rawValue;Other way is to read the XML tags and assign the value
to the fields..You need to loop thru the group element and read each
group item value and assign the value to the field..Field2.rawValue =
xfa.resolveNode("$record.group.groupItem").value; //this command will
only read the fir...