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
In XSLT how do I check the selected value of a radiobuttonlist? I am using it for conditional display and this does not work:
<xsl:when test="umbraco.library:GetPreValueAsString(slidePlacement) = 'Right'">
Hi Connie,
What is 'slidePlacement'?
Can you try like :
<xsl:if test="umbraco.library:GetPreValueAsString(./slidePlacement)!='Right'"> </xsl:if>
Cheers
It works now. Turns out I was reading the wrong value. Doh!
is working on a reply...
Write your reply to:
Upload image
Image will be uploaded when post is submitted
How to check value of radiobuttonlist
In XSLT how do I check the selected value of a radiobuttonlist? I am using it for conditional display and this does not work:
Hi Connie,
What is 'slidePlacement'?
Can you try like :
Cheers
It works now. Turns out I was reading the wrong value. Doh!
is working on a reply...