I have a multilangual website setup, in which the xslt checks for the current language by getting the name of the rootnode. It then has to append the current language to a property alias. I've tried to do it with concat, but it gives me text instead of a value.
So, I have a $lang and a value for $node/prodDescription and I want the the complete string to be:
Combine strings?
I have a multilangual website setup, in which the xslt checks for the current language by getting the name of the rootnode. It then has to append the current language to a property alias. I've tried to do it with concat, but it gives me text instead of a value.
So, I have a $lang and a value for $node/prodDescription and I want the the complete string to be:
<xsl:value-of select="$node/prodDescription_NL"/>
Is that possible?
Some explanation:
You can use concat, you just need to do the following to access the field:
Not tested but should work..
-Tom
[EDIT]
... Too slow :-)
/Chriztian
Tom and Chriztian,
Exactly what I was looking for!
Thanks!
Ralph
is working on a reply...