I have an HashMap object as part of my java model and when I convert it into XML, this is the result...
<transaction>
<claims>
<remarksMap>
<entry>
<string>XX</string>
<string>Description 1</string>
</entry>
<entry>
<string>YYY</string>
<string>Description 2</string>
</entry>
<entry>
<string>ZZZZ</string>
<string>Description 3</string>
</entry>
</remarksMap>
</claims>
</transaction>
I would like to iterate through the Map object in XSLT but haven't had any luck yet. Posting a sample code from the XSL...
<xsl:for-each select="remarksMap/entry">
<fo:table-row>
<fo:table-cell padding="3px" text-align="left">
<fo:block font-size="7pt">
<xsl:value-of select="string" />
</fo:block>
</fo:table-cell>
</fo:table-row>
</xsl:for-each>
The Output for this comes like this. It's printing out the entrySet() in a new line. XX Description 1 YYY Description 2 ZZZZ Description 3
I would ideally like to print the keys in the first and the values in the second . Appreciate any help on this!
P.S: I'm using XSL v2.0 and Saxon-HE:9.4 as the processor.
What you would need to do is add a second
xsl:for-each
to loop over eachstring
and create thefo:table-cell
's from that.You could also use a push style approach...
XSLT 2.0
XSL-FO Output
Edit
After reading your question a second time, this:
almost sounds like you want just two cells with all keys in the first cell and all values in the second. If this is the case, you could do something like...
XSLT 2.0
XSL-FO Output