I am a complete noob with XML and XSLT. And I have a major project to finish with it. Anyway here is my issue:
I am trying to transform an XML document using XSL. I have nodes nested within nodes, and I need to loop through some of these nodes.
the xsl stops working at these line and picks up again later on:
<xsl:for-each select="/propertyAvailListResponse/propertyList/property/address/addressLineList">
<li><xsl:value-of select="address/addressLineList/addressLine"/></li>
I can force the display of this element but it repeats too many times and only shows the value of one element in one node for all nodes...
Any ideas?
I am trying to transform an XML document using XSL. I have nodes nested within nodes, and I need to loop through some of these nodes.
the xsl stops working at these line and picks up again later on:
<xsl:for-each select="/propertyAvailListResponse/propertyList/property/address/addressLineList">
<li><xsl:value-of select="address/addressLineList/addressLine"/></li>
I can force the display of this element but it repeats too many times and only shows the value of one element in one node for all nodes...
Any ideas?