I have a form that has 6 pages. some of these pages are repeatable and I am trying to make it so that the entire form is repeatable. I use xml input such as:
<Root>
<page1/>
<page2/>
<page3/>
<page3/>
<page4/>
<page4/>
<page5/>
<page1/>
<page2/>
<page3/>
<page3/>
<page4/>
<page4/>
<page5/>
</Root>
But instead of getting the pages as is specified by the XML I get the two forms combined and some pages misssing
page1 [1]
page2 [1]
page3 [1]
page3 [1]
page3 [2]
page3 [2]
page4 [1]
page4 [1]
page4 [2]
page4 [2]
page5 [1]
I am not sure where to go from here and I appologize for being vague. I have a copy of the form and XML that show this if anyone can take a look.
Thanks
Cameron