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
Hi fellow Umbracians
I need a little help on creating what probably is an easy XSLT macro.
I have a node type, with a proberties that can be set to true or false.
What I want is an XSLT that lists all nodes from current page with that property set to "true".
I know this is pretty simple to do, but im a total noob at XSLT, so I really hope some of you guys can help me out?
// Mikkel
Try like this.
<xsl:for-each select="$currentPage/* [string(yourTrueFalsePropertyAlias) = '1' and @isDoc] ">
=)
Thx.... That did it :)
is working on a reply...
Write your reply to:
Upload image
Image will be uploaded when post is submitted
List nodes with property set to true?
Hi fellow Umbracians
I need a little help on creating what probably is an easy XSLT macro.
I have a node type, with a proberties that can be set to true or false.
What I want is an XSLT that lists all nodes from current page with that property set to "true".
I know this is pretty simple to do, but im a total noob at XSLT, so I really hope some of you guys can help me out?
// Mikkel
Try like this.
=)
Thx.... That did it :)
is working on a reply...