71 votes

This package is marked as retired

Multi Url Picker is available as a built-in property editor in Umbraco 7.14+ and 8.0+

Multi Url Picker

Allows editors to pick and sort multiple urls, it uses Umbraco's link picker which supports internal and external links and media.

Usage

Add a new property to your document type and select the Multi Url Picker property editor in the pickers category.

If you're using the models builder, you can access the property on your model e.g. Model.Links if your property alias is links.

@{ var links = Model.Links.ToList(); }

@if (links.Count > 0)
{
  <ul>
    @foreach (var item in links)
    {
      <li><a href="@item.Url" target="@item.Target">@item.Name</a></li>
    }
    </ul>
}

If Max number of items is configured to 1

@if(Model.Link != null)
{
  <a href="@Model.Link.Url" target="@Model.Link.Target">@Model.Link.Name</a>
}

Screenshots

Documentation

Source code

 Download package
version 2.2.1

NuGet install instructions for Umbraco 7.0.0-7.13.0

Install-Package RJP.UmbracoMultiUrlPicker

Package owner

Rasmus John Pedersen

Rasmus John Pedersen

Rasmus has 485 karma points

Package Compatibility

This package is compatible with the following versions as reported by community members who have downloaded this package:
Works on Umbraco Cloud
Version 8.18.x (untested)

You must login before you can report on package compatibility.

Previously reported to work on versions: 7.13.x, 7.12.x, 7.11.x, 7.10.x, 7.9.x, 7.8.x, 7.7.x, 7.5.x, 7.4.x, 7.3.x, 7.2.x, 7.1.x, 7.0.x

Package Information

  • Package owner: Rasmus John Pedersen
  • Created: 07/03/2014
  • Current version 2.2.1
  • .NET version 4.0,4.5
  • License MIT
  • Downloads on Our: 20.4K
  • Downloads on NuGet: 645.7K
  • Total downloads : 666K