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 have an event handler to the media section.
I need perform some things on every page that contains links to this media node id.
How do I get the document list?
assuming that all the links to this document are via the same property alias, e.g MainImage, then try
<xsl:variable name="imageId" select="12345"/><xsl:for-each select="$currentPage/ancestor-or-self::node//node[data[@alias='MainImage']=$imageId]"> <xsl:value-of select="concat(@id, ' - ', @nodeName)"/></xsl:for-each>
is working on a reply...
This forum is in read-only mode while we transition to the new forum.
You can continue this topic on the new forum by tapping the "Continue discussion" link below.
Continue discussion
Get the list of pages containing a link to specific nodeID
I have an event handler to the media section.
I need perform some things on every page that contains links to this media node id.
How do I get the document list?
assuming that all the links to this document are via the same property alias, e.g MainImage, then try
is working on a reply...
This forum is in read-only mode while we transition to the new forum.
You can continue this topic on the new forum by tapping the "Continue discussion" link below.