I have an array of objects. I am using the Appery data mapper (the visual mapper) to format these for an XML post request.
Let's say the object has three items.
When the XML is mapped. The output is:
code
<0>
<ITEM1></ITEM1>
</0>
<1>
<ITEM2></ITEM2>
</1>
<2>
<ITEM3></ITEM3>
<3>
/code
I wish to have this
code
<ITEM1>
<ITEM2>
<ITEM3>
/code
How can I alter the config to make this a reality?