I have a repeating section that the user can add multiple instances of.
In this section they select an option from a dropdown box.
Depending what option they selected, descriptions are loading into expression boxes from a secondary xml data source.
Everything works perfectly fine as long as there is one instance of the repeating section.
As soon as I add a section section, the descriptions all go to one choice rather than being different in each of the repeating sections.
I used some conditional xPath statements with the expression boxes to display the correct information.
Example: xdXDocument:GetDOM("Flat File Specs")/FlatFileSpecs/CCR/Header/RecordID/Description[xdXDocument:get-DOM()/File/PmtRec/@PmtMethod = "CCR"] | xdXDocument:GetDOM("Flat File Specs")/FlatFileSpecs/CHK/Header/RecordID/Description[xdXDocument:get-DOM()/File/PmtRec/@PmtMethod = "CHK"]
I just need to know why the repeating sections are not showing independant data.