In CONTENT section, when you click on a certain page, you have many tags.One of them is PROPERTIES. And there you have a NAME.How can I access that name in XSLT?This is not the nodeName, right?
Yes the name of the node, which you can alter in the "name" field under "properties" is the @nodeName. So to access it with XSLT you can write <xsl:value-of select="$currentPage/@nodeName" />
Please help me on this one
Hi, guys,
In CONTENT section, when you click on a certain page, you have many tags.One of them is PROPERTIES. And there you have a NAME.How can I access that name in XSLT?This is not the nodeName, right?
THX for your help.
Uros
Hi Uros
Yes the name of the node, which you can alter in the "name" field under "properties" is the @nodeName. So to access it with XSLT you can write <xsl:value-of select="$currentPage/@nodeName" />
/Jan
is working on a reply...