AEM 6.5 xml file generation with attributes of each element I am working on a dynamic form and using AEM 6.5 to build it. I have an export data button that when clicked, exports the data saved in the form to an xml with its corresponding elements. To be more precise, I have the following for exporting: xfa.host.exportData("",0); The generated xml file looks like the following. It has the elements tags and any value stored in the corresponding textfield, or checkbox, etc. <?xml version="1.0" encoding="UTF-8"?><root><ApplicationType><ATRadioButton100>1</ATRadioButton100><ATRadioButton050>1</ATRadioButton050><ADTextField170>345-908-7888</ADTextField170><ADTextField190>Engineer</ADTextField190>.... What I would like to do is that when the xml is generated, it also includes an attribute for each element. For example: <ADTextField170 name="phone">345-908-7888</ADTextField170> Is it possible in AEM to set attributes for each object (e.g. t