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
Hello.
Is it possible to target attributes that were created by me within a template of a page?
I would like to create a footer that contains a snippet about the company(just a paragraph), and would like to grab this from my main page.
I've only been using Umbraco for a week and I'm still getting my head wrapped around a few things.
Thank you in advance.
Use recursive properties:
<umbraco:Item field="TopMostPropertyAlias" recursive="true" runat="server"></umbraco:Item>
the recursive parameter says that umbraco iterates through all parents of the node till this property is found and displays this
Thomas
is working on a reply...
Write your reply to:
Upload image
Image will be uploaded when post is submitted
Is it possible to target custom attributes from a template?
Hello.
Is it possible to target attributes that were created by me within a template of a page?
I would like to create a footer that contains a snippet about the company(just a paragraph), and would like to grab this from my main page.
I've only been using Umbraco for a week and I'm still getting my head wrapped around a few things.
Thank you in advance.
Use recursive properties:
the recursive parameter says that umbraco iterates through all parents of the node till this property is found and displays this
Thomas
is working on a reply...