Adobe Livecycle export specified nodes in XML problem
IT & Infrastructure
1
Posts
1
Posters
2
Views
1
Watching
-
Hello everyone. My problem states like this: I have a form created with adobe livecycle, each of the controls in the form being bind to an element from the data connection. What I want is that if the user does not enter any data in a control, when the export XML is created, that control should not appear in the xml. What I've tried: remove the binding from the control. if the binding is set to none, then the control should not appear in the xml. To remove the binding i've used the following code:
control.bind.match="none";
control.bind.ref = "";But it does not work. the corresponding node is still available in the exported xml. Can anyone help me with this problem? Thank you.