- Mark as New
- Follow
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report
Hi,
that xml structure is correct as the Row1 object which surrounds the objects AmendmentNo, FederalContractNo and StateContractNo has currently no binding.
If you set it's binding the structure will change into:
<ContractTable>
<Contracts>
<HeaderRow xmlns:xfa="http://www.xfa.org/schema/xfa-data/1.0/" xfa:dataNode="dataGroup"/>
<Row1>
<AmendmentNo>1</AmendmentNo>
<FederalContractNo>AAA</FederalContractNo>
<StateContractNo./>
</Row1>
<Row1>
<AmendmentNo>2</AmendmentNo>
<FederalContractNo>BBB</FederalContractNo>
<StateContractNo./>
</Row1>
<Row1>
<AmendmentNo>3</AmendmentNo>
<FederalContractNo>CCC</FederalContractNo>
<StateContractNo./>
</Row1>
</Contracts>
</ContractTable>
Things that should be changed:
Row1 needs a binding.
The naming of StateContractNo. should not contain a dot!
The binding for the HeaderRow is superfluous.
Views
Replies
Total Likes