Hi,
I have print form with the layout like this
Sorry about the mixed languages
Problem is in these Erittely-masterpages.
Erittely_etusivu has restriction 1, and content will overflow to Erittely_next which can occur n times.
This combination can exist n times.
Now I need to fetch value from a field from Erittely_etusivu into corresponding field on Erittely_next.
With this I get the value
var jeps = xfa.resolveNode("form..Erittely_etusivu.Headeri.INVOICE_NO_E");
this.rawValue = jeps.rawValue;
but it is always the field value from the first Erittely_etusivu.
How can I get the value of the n:th INVOICE_NO_E-field? Like using the current pagenumber -1.
I tried using index but received nothing.
-Pekka