Hi,
I want to set a modified flag in the xml data when a field is modified. I added a field for that in the xsd that is bound to the pdf file:
<xs:element name="modifiedFields">
<xs:complexType>
<xs:sequence>
<xs:element name="countryModified" type="xs:int"/>
</xs:sequence>
</xs:complexType>
</xs:element>
And I want to access it when a change event occurs:
salesReport.Page1.ProductNameTableSubForm.ProductNameTable.Row1.country::change - (JavaScript, client)
countryModified = 1; // does not work
$.modifiedFields.countryModified = 1; // does not work
There is no field in the pdf that is bound to countryModified. How can I set the value of the countryModified field without having a field bound to that?
Thanks in advance for your help.
Cheers,
Arne