CustomizedFieldValue
From Plex-XML
The customizedFieldValue template allows you to replace the whole content of a field via xslt. The field must have the shape Customized.
Contents |
Element
<customizedFieldValue>
Attributes
- none
Example
<xsl:template name="customizedFieldValue">
<xsl:choose>
<xsl:when test="@name='FooName'">
This is your customized content. You could put any HTML here.
</xsl:when>
</xsl:choose>
</xsl:template>