Press Ctrl / CMD + C to copy this to your clipboard.
This post will be reported to the moderators as potential spam to be looked at
Hi All,
I have around 50 Items under one node and i want to display them as following.
<LI>
</LI>
etc.
Please let me know if any one have idea about this.
Look at what Chriztian Steinmeier answers here http://our.umbraco.org/forum/developers/xslt/11527-Problem-with-listing-HTLM-strcuture-with-XSLT
<xsl:for-each select="$currentPage/node()[name(.) = 'itemalias']"> <xsl:choose> <xsl:when test="(position() mod 2) = 1"> <p> <xsl:value-of select="'<li>'"/> </p> <xsl:value-of select ="./@nodeName"/> </xsl:when> <xsl:when test="(position() mod 2) = 0"> <p> <xsl:value-of select ="./@nodeName"/> </p> <xsl:value-of select="'</li>'"/> </xsl:when> </xsl:choose> </xsl:for-each>
is working on a reply...
Write your reply to:
Upload image
Image will be uploaded when post is submitted
Row level bifurcation
Hi All,
I have around 50 Items under one node and i want to display them as following.
<LI>
</LI>
<LI>
</LI>
<LI>
</LI>
etc.
Please let me know if any one have idea about this.
Look at what Chriztian Steinmeier answers here http://our.umbraco.org/forum/developers/xslt/11527-Problem-with-listing-HTLM-strcuture-with-XSLT
is working on a reply...