Expand my Community achievements bar.

July 31st AEM Gems Webinar: Elevate your AEM development to master the integration of private GitHub repositories within AEM Cloud Manager.

How to bind data from script created variable to embed element of XML schema (xsd) in "Data View"

Avatar

Former Community Member

Hi, i have got another problem with livecycle designer scripting.

I have got script line which is defining of string variable:

var aaa = "this is my string";

and i have got embed XML schema like this (it`s only short part of whole file):

... xs:element name="bbb" type="xs:string"/ ...

After saving data to XML i would like to get "this is my string" as a value of my "bbb" XML element.

To save this data i`m using submit button which is connect with submit.php file on my server.

How to connect script created variable and embed XML schema element which is present on my "Data View" tab.

Please help me a bit becouse i don`t know even where to search answer of it...

Of course i know possibilities to create fake unvisible text field object and bind it with 'bbb' and than put "this.rawValue = aaa" to connect those two variables but i think that is not a good idea to solve it in that way. It`s too primitive

1 Reply

Avatar

Former Community Member

i solve it, i should write this:

xfa.datasets.data.bbb.value = aaa;