Excellent, worked like a charm. ......so simple and yet I had been looking for it everywhere. Glad I decided to post it on the forum. Thanks for your quick response.
And tip (this happen's to me a lot of times), if you forget the name of the property disable-output-escaping all the time, so what i do is on the xslt edit, iclick on the "Insert xslt:value-of" and in the modal pop-up just check the Disable Output check box and click insert...
Rendering user entered HTML using XSLT
I have content property 'subHeaderImage' of type RTE where the user inputs the image tag with maps. I am using xslt-macro to render the image.
The following gives me Error parsing XSLT file: \xslt\DispIntHeaderImg.xslt
<xsl:value-of select="umbraco.library:RenderTemplate($currentPage/subHeaderImage)" />
Using the following code return the html iteself.
<xsl:value-of select="$currentPage/subHeaderImage"/>
Is there a way to render the html? Thanks for your thoughts and help.
Try it like this
<xsl:value-of select="$currentPage/subHeaderImage" disable-output-escaping="yes"/>
Excellent, worked like a charm. ......so simple and yet I had been looking for it everywhere. Glad I decided to post it on the forum. Thanks for your quick response.
And tip (this happen's to me a lot of times), if you forget the name of the property disable-output-escaping all the time, so what i do is on the xslt edit, iclick on the "Insert xslt:value-of" and in the modal pop-up just check the Disable Output check box and click insert...
Gald i could help
is working on a reply...