Hi There everyone
During the last Hours I'm working on a friend's computer with LiveCycle which is very interresting.
As a beginner I did my best to find an answer before asking for help but time goes on and I really need to fix my problem which I'm sure is nothing for usual users.
I made a form with some fields to be completed by a XML file which I import including a text calculated field called "GroupName".(several occurences)
It works fine.
I just need an additionnal field "GroupNameX" in footer of Pages Types to show the content of the first instance of the field called "GroupName".
I tried a lot of solutions but I miss the right one :)
Which script has to be used?
Sorry for my poor english. ANd thanks a lot for your answer.
Guy
You can try this script:
// on the field GroupName on:exit - (JavaScript, client)
// Place on field of the first instance subform so that it will copy itself to the GroupNameX field
//replace form1.P4.ItemSet with the path to your field GroupNameX
xfa.resolveNode("form1.P4.ItemSet.GroupNameX").rawValue=this.rawValue;