Trying to create a table where rows are turned into columns so that I can logically group the columns in XML. The XML s something like this:
<root>
<field name="field1">
<string>field1.row1</string>
<string>field1.row2</string>
<string>field1.row3</string>
<string>field1.row4</string>
</field>
<field name="field2">
<string>field2.row1</string>
<string>field2.row2</string>
<string>field2.row3</string>
<string>field2.row4</string>
</field>
<field name="field3">
<string>field3.row1</string>
<string>field3.row2</string>
<string>field3.row3</string>
<string>field3.row4</string>
</field>
</root>
This means every field has numerous cells all displayed in a column, and instead of the field spanning columns, it is displayed over several rows.
I have tried to create some xsl (to no avail) to display this information as a horizontally grouped table.
Any ideas on how this could be done?