I have created a XFA pdf file(using LC Designer 8.2) to display this issue but I an not able to attach the pdf so plz bare with me with the explaination
click event js:
function activateUser() {
var PDFVersion=xfa.host.variation+xfa.host.version;
xfa.host.messageBox("button click event registered");
xfa.form.form1.sendForm.welcomeMsg.presence = "invisible";
xfa.form.form1.sendForm.successMsg.presence = "visible";
};
Steps to get the warning:
1) Open the attached pdf using Acrobat Reader.
2) Click the "Confirm Enrollment" button
3) The adobe reader gives a warning "Cannot Sav Information"
Summary of the XFA pdf:
It has two text fileds. On button click event the field A is made invisisble & field B is made visible.
On opening the pdf in reader it should not throw this warning message.
My Efforts:
1) I can avoid this warn message by adding RRE to the pdf but I don't want to add RRE as I just want modify the UI(no form submit ir required).
I have a base pdf & I want to update the pdf with user specific data. I have no requirement to make it a form(no form submit is required)
Please help me resolve this issue.