Our.Umbraco.SimpleTreeMenu
4.0.6
.NET 5.0
This package targets .NET 5.0. The package is compatible with this framework or higher.
.NET Framework 4.7.2
This package targets .NET Framework 4.7.2. The package is compatible with this framework or higher.
dotnet add package Our.Umbraco.SimpleTreeMenu --version 4.0.6
NuGet\Install-Package Our.Umbraco.SimpleTreeMenu -Version 4.0.6
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Our.Umbraco.SimpleTreeMenu" Version="4.0.6" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Our.Umbraco.SimpleTreeMenu --version 4.0.6
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: Our.Umbraco.SimpleTreeMenu, 4.0.6"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install Our.Umbraco.SimpleTreeMenu as a Cake Addin #addin nuget:?package=Our.Umbraco.SimpleTreeMenu&version=4.0.6 // Install Our.Umbraco.SimpleTreeMenu as a Cake Tool #tool nuget:?package=Our.Umbraco.SimpleTreeMenu&version=4.0.6
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
Our.Umbraco.SimpleTreeMenu
A simple treemenu propertyeditor that uses a doc-type (element) for menu items.
With a valueconverter that utilize the built in nestedcontent for type conversion of menu items. Every item can be cast to an IPublishedElement for propertyaccess through Umbracos extension-methods.
It will work without the valueconverter, just remove the binary and use JObject instead of IEnumerable<ISimpleTreeItem>
Example:
@{
var navigationModel = Model.Value<IEnumerable<ISimpleTreeItem>>("navigation", defaultValue: new List<ISimpleTreeItem>());
@:<ul>
foreach (var item in navigationModel)
{
var element = (IPublishedElement)item;
var url = element.Value<IPublishedContent>("linkedContent")?.Url ?? element.Value<string>("linkedUrl") ?? "#";
@:<li><a class="nav-link" href="@url">@(element.Value<string>("title"))</a></li>
if (item.Children.Any())
{
@:<ul>
foreach (var child in item.Children)
{
var cElement = (IPublishedElement)child;
var cUrl = cElement.Value<IPublishedContent>("linkedContent")?.Url ?? cElement.Value<string>("linkedUrl") ?? "#";
@:<li><a class="nav-link" href="@cUrl">@(cElement.Value<string>("title"))</a></li>
}
@:</ul>
}
}
@:</ul>
}
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 is compatible. net5.0-windows was computed. net6.0 is compatible. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 is compatible. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 is compatible. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. |
.NET Framework | net472 is compatible. net48 was computed. net481 was computed. |
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
-
.NETFramework 4.7.2
- UmbracoCms.Core (>= 8.7.1)
- UmbracoCms.Web (>= 8.7.1)
-
net5.0
- Umbraco.Cms.Web.BackOffice (>= 9.0.0)
- Umbraco.Cms.Web.Website (>= 9.0.0)
-
net6.0
- Umbraco.Cms.Web.BackOffice (>= 10.0.0)
- Umbraco.Cms.Web.Website (>= 10.0.0)
-
net7.0
- Umbraco.Cms.Web.BackOffice (>= 11.0.0)
- Umbraco.Cms.Web.Website (>= 11.0.0)
-
net8.0
- Umbraco.Cms.Web.BackOffice (>= 13.0.0 && < 14.0.0)
- Umbraco.Cms.Web.Website (>= 13.0.0 && < 14.0.0)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
4.0.6 | 289 | 7/10/2024 |
4.0.5 | 1,243 | 11/2/2023 |
4.0.4 | 383 | 10/2/2023 |
4.0.3 | 250 | 8/9/2023 |
4.0.2 | 2,507 | 4/3/2023 |
4.0.1 | 1,048 | 3/18/2023 |
4.0.0 | 431 | 12/2/2022 |
3.0.3 | 1,234 | 11/19/2022 |
3.0.2 | 1,960 | 10/12/2022 |
3.0.1 | 1,110 | 9/20/2022 |
3.0.0 | 1,124 | 8/4/2022 |
2.0.1 | 1,627 | 5/25/2022 |
2.0.0 | 1,115 | 12/6/2021 |
2.0.0-beta3 | 1,574 | 11/26/2021 |
2.0.0-beta2 | 3,079 | 10/4/2021 |
2.0.0-beta | 303 | 10/4/2021 |
1.1.0 | 5,634 | 11/19/2020 |
1.0.0 | 2,233 | 8/21/2020 |
0.2.2 | 1,498 | 4/29/2020 |
0.2.0 | 780 | 12/12/2019 |
0.1.3 | 478 | 12/4/2019 |
0.1.1 | 486 | 11/14/2019 |