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,
I was wondering if anyone had a solution to this?
I would imagine that something like below would work (but below doesnt):
<xsl:variable name = "ColumnNo" select = "/macro/ColumnNo" /> <xsl:value-of select="string(concat($currentPage/seo_column1,$ColumnNo))" disable-output-escaping="yes"/>
The aim of this is to actually get a node value not the value of the concatonated string.
Thanks
Scott
Hi Scott
You should be able to it like this:
<xsl:variable name="ColumnNo" select="/macro/ColumnNo" /><xsl:variable name="field" select="concat('seo_column',$ColumnNo)" /> <xsl:value-of select="$currentPage/*[name()=$field]" disable-output-escaping="yes"/>
/Kim A
is working on a reply...
Write your reply to:
Upload image
Image will be uploaded when post is submitted
Getting a value from a parameter
Hi,
I was wondering if anyone had a solution to this?
I would imagine that something like below would work (but below doesnt):
<xsl:variable name = "ColumnNo" select = "/macro/ColumnNo" />
<xsl:value-of select="string(concat($currentPage/seo_column1,$ColumnNo))" disable-output-escaping="yes"/>
The aim of this is to actually get a node value not the value of the concatonated string.
Thanks
Scott
Hi Scott
You should be able to it like this:
/Kim A
is working on a reply...