RJP.UmbracoMultiUrlPicker
2.1.0
See the version list below for details.
dotnet add package RJP.UmbracoMultiUrlPicker --version 2.1.0
NuGet\Install-Package RJP.UmbracoMultiUrlPicker -Version 2.1.0
<PackageReference Include="RJP.UmbracoMultiUrlPicker" Version="2.1.0" />
paket add RJP.UmbracoMultiUrlPicker --version 2.1.0
#r "nuget: RJP.UmbracoMultiUrlPicker, 2.1.0"
// Install RJP.UmbracoMultiUrlPicker as a Cake Addin #addin nuget:?package=RJP.UmbracoMultiUrlPicker&version=2.1.0 // Install RJP.UmbracoMultiUrlPicker as a Cake Tool #tool nuget:?package=RJP.UmbracoMultiUrlPicker&version=2.1.0
Multi Url Picker for Umbraco 7
Allows editors to pick and sort multiple urls, it uses Umbraco's link picker which supports internal and external links and media.
Installation
Install the NuGet package.
or
Install the package from the Umbraco package repository.
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>
}
Changelog
See the changelog here
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET Framework | net45 is compatible. net451 was computed. net452 was computed. net46 was computed. net461 was computed. net462 was computed. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
-
- UmbracoCms.Core (>= 7.6.0 && < 8.0.0)
NuGet packages (6)
Showing the top 5 NuGet packages that depend on RJP.UmbracoMultiUrlPicker:
Package | Downloads |
---|---|
Endzone.Umbraco.Extensions
Extensions, helpers and services for use with all our Umbraco sites |
|
Papermoon.Kupo
An Umbraco framework designed to reduce time spent on implementation of common functionality. |
|
Equ.Umbraco.Bootstrap
Equ Umbraco Bootstrap |
|
Papermoon.Kupo.Core
Core assemblies needed for Kupo. |
|
UmbracoVault.Extensions.MultiUrlPicker
An UmbracoVault extension library for the MultiUrlPicker data type. Allows for Multi Url Picker properties to be deserialized to strongly typed models. |
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
2.2.1 | 217,254 | 2/6/2019 |
2.2.0 | 67,082 | 8/21/2018 |
2.1.0 | 67,870 | 11/8/2017 |
2.0.1 | 36,963 | 6/3/2017 |
2.0.0 | 13,114 | 5/9/2017 |
1.3.2 | 77,203 | 4/2/2017 |
1.3.1 | 168,153 | 4/7/2015 |
1.2.0 | 7,386 | 7/24/2014 |
1.1.0 | 1,498 | 7/11/2014 |
1.0.0.1 | 1,907 | 7/3/2014 |
1.0.0 | 1,655 | 5/13/2014 |
0.2.0 | 1,633 | 5/8/2014 |
0.1.1 | 1,512 | 4/25/2014 |
0.1.0 | 1,803 | 3/7/2014 |
Feature Request : Querystring Parameters. Thanks to @mattbrailsford
No more "Could not find persisted pre-value for field (minNumberOfItems|maxNumberOfItems)" warnings in the Umbraco log