


Hi,
In a stage of user workflow of my PDF, the user presses a submit button that sends XML data to an address. There's an image field that has hundreds of lines of XML code that has no need to sent. In fact, by the time this submit button is pressed, the image field is already "hidden", but of course it remains on the form.
Is there any sort of visibility or access property that will supress an object enough that it doesn't transfer with XML? How about dynamically deleting a field on the user-end?
Views
Replies
Sign in to like this content
Total Likes
Hi,
One solution, use an ImageField object instead of an Image object. Then go to the Object > Binding palette and for the binding select No Data Binding (or None, depending on your version of LC Designer).
Because you are now using an ImageField you will need one line of code in it's docReady event (JavaScript):
this.access = "readOnly";
The lines in the XML data file contain the image in Base64 format.
Hope that helps,
Niall
Views
Replies
Sign in to like this content
Total Likes
Hi,
One solution, use an ImageField object instead of an Image object. Then go to the Object > Binding palette and for the binding select No Data Binding (or None, depending on your version of LC Designer).
Because you are now using an ImageField you will need one line of code in it's docReady event (JavaScript):
this.access = "readOnly";
The lines in the XML data file contain the image in Base64 format.
Hope that helps,
Niall
Views
Replies
Sign in to like this content
Total Likes