I have a nested repeating subform. The nested subform is repeating more than what it is supposed to do. Any suggestions appreciated.
Here is an example to explain it better -
For User1, form needs to render 3 instances of subform; For User 2, form needs to render 1 instance of subform. But 4 instances of nested subform is displayed for User 1 & User 2.
<test>
<userid="1">
<name>User1</name>
<child>User Child 1</child>
<child>User Child 2</child>
<child>User Child 3</child>
</user>
<userid="2">
<name>User2</name>
<child>User Child 1</child>
</user>
</test>
Thank You.