ok, I give up. How would I show the category title above the category description. using entity.grid.xml ? Multi- 9.3
Thanks!
ok, I give up. How would I show the category title above the category description. using entity.grid.xml ? Multi- 9.3
Thanks!
After this line at top of xml package:
<xslutput method="html" omit-xml-declaration="yes" />
write:
<xslaram name="CategoryName">
<xsl:value-of select="/root/EntityHelpers/*[name()=$EntityName]/descendant::Entity[EntityID=$EntityID]/Name" />
</xslaram>
Right after
<xsl:template match="/">
write:
<h1 class="CategoryHeader"><xsl:value-of select="$CategoryName"/></h1>
Hope it helps