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
I can't get my form to appear when adding from a macro in a richtext editor...
I'm just calling @accordionItem.bodyText and the source is rendering:
<!--?UMBRACO_MACRO jquery="0" formnode="2241" macroAlias="PliableForm" /-->
Hi Tom
What version of Umbraco are you using? Perhaps the package is not compatible with your Umbraco version?
/Jan
Umbraco 6.2.0 has another interpretation of XML, which screws up the XSLT.
Replace the next lines:
<xsl:template name="renderForm"> <xsl:param name="formPage" /> <xsl:if test="count($formPage/* [pliableField]) > 0"> <div id="PliableForm"> <xsl:value-of select="$formPage/formContent" disable-output-escaping="yes" /> <xsl:for-each select="$formPage/* [pliableField]"> <xsl:variable name="name" select="@nodeName" />
With:
<xsl:template name="renderForm"> <xsl:param name="formPage" /> <xsl:if test="count($formPage/* [required]) > 0"> <div id="PliableForm"> <xsl:value-of select="$formPage/formContent" disable-output-escaping="yes" /> <xsl:for-each select="$formPage/* [required]"> <xsl:variable name="name" select="@nodeName" />
Kind regards,Peter RomboutsFYI: We are creating a new version of Pliable, which has Razor support and will work with the latest versions of Umbraco
is working on a reply...
Write your reply to:
Upload image
Image will be uploaded when post is submitted
Form Not Appearing
I can't get my form to appear when adding from a macro in a richtext editor...
I'm just calling @accordionItem.bodyText and the source is rendering:
Hi Tom
What version of Umbraco are you using? Perhaps the package is not compatible with your Umbraco version?
/Jan
Umbraco 6.2.0 has another interpretation of XML, which screws up the XSLT.
Replace the next lines:
With:
Kind regards,
Peter Rombouts
FYI: We are creating a new version of Pliable, which has Razor support and will work with the latest versions of Umbraco
is working on a reply...