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 need to list subnodes from two different parents in one list...
I thought i might do
<xsl:for-each select="umbraco.library:GetXmlNodeById(1280)/* [@isDoc and string(umbracoNaviHide) != '1']|| umbraco.library:GetXmlNodeById(1301)/* [@isDoc and string(umbracoNaviHide) != '1']">
But guess what. That doesn't work :|
Any idea how to do this?
Ok, so just one pipe character, not two :)
<xsl:for-each select="umbraco.library:GetXmlNodeById(1280)/* [@isDoc and string(umbracoNaviHide) != '1'] | umbraco.library:GetXmlNodeById(1301)/* [@isDoc and string(umbracoNaviHide) != '1']">
Thanks @Chriztian Steinmeier
is working on a reply...
Write your reply to:
Upload image
Image will be uploaded when post is submitted
listing subpages from multiple nodes
I need to list subnodes from two different parents in one list...
I thought i might do
But guess what. That doesn't work :|
Any idea how to do this?
Ok, so just one pipe character, not two :)
Thanks @Chriztian Steinmeier
is working on a reply...