This is will be really easy for someone who knows how.
I've got a list of child pages that are events.
@{
var page = Umbraco.TypedContent(1086);
}
<div class="panel">
@foreach (var child in page.Children)
{
<a href="@child.Url">Link</a>
}
I need to display a list of those pages on another page but need to get more information about them. So I need things like event name (eventName) etc and just cant seem to get them out.
Child list
Hi
This is will be really easy for someone who knows how.
I've got a list of child pages that are events.
I need to display a list of those pages on another page but need to get more information about them. So I need things like event name (eventName) etc and just cant seem to get them out.
Can anyone advise.
Thanks.
Try:
Thanks Marthijn it was that one I needed.
thought it would be easy.
is working on a reply...