multi url picker to display child pages - Umbraco 10
I'm trying to use the Mulit Url Picker for Umbraco 10. I'm wanting it to display the children of each link selected as well. I've been struggling to get it to display. this is what i have for the parent level so far.
@using Umbraco.Cms.Web.Common.PublishedModels;
@inherits Umbraco.Cms.Web.Common.Views.UmbracoViewPage
@using Umbraco.Cms.Core.Models
@{
var links = Model.Value<IEnumerable<Link>>("rightNavigation");
}
@if (links.Any())
{
<ul>
@foreach (var link in links)
{
<li><a href="@link.Url" target="@link.Target">@link.Name</a></li>
}
</ul>
}
multi url picker to display child pages - Umbraco 10
I'm trying to use the Mulit Url Picker for Umbraco 10. I'm wanting it to display the children of each link selected as well. I've been struggling to get it to display. this is what i have for the parent level so far.
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.