I have a dynamic form that has two tables, each related to the same data points. Here is an example of the XML instance:
<root>
<ca>
<name>Joe</name>
<selected>Maybe</selected>
</ca>
<ca>
<name>Suzie</name>
<selected>No</selected>
</ca>
<ca>
<name>James</name>
<selected>Yes</selected>
</ca>
</root>
The first form binds to the $.name, and the second binds to $.selected. The form will only render the first table, but not the second. I assume this is because all the <ca> nodes were consumed when binding against the first table. Is there a way to do this?