I have an XML that was generated from a website table. As such, the XML has doubled notes (see below).
Autocreate maps the TD nodes as TD.
When I link this, it does show the first TD in the app.
How can I get the second column to display?
I tried changing to TD[0] and TD[1] - but that did not work.
(I also have another XML where a table is converted to XML and there are 5 columns).
precode
<?xml version="1.0" encoding="UTF-8"?>
<DATA>
<TR>
<TD>my id 1</TD>
<TD>my data 1</TD>
</TR>
<TR>
<TD>my id 1</TD>
<TD>my data 1</TD>
</TR>
<TR>
<TD>my id 1</TD>
<TD>my data 1</TD>
</TR>
</DATA>
/code/pre