Umbraco.Community.SimpleTrees
16.1.5-alpha0014
See the version list below for details.
dotnet add package Umbraco.Community.SimpleTrees --version 16.1.5-alpha0014
NuGet\Install-Package Umbraco.Community.SimpleTrees -Version 16.1.5-alpha0014
<PackageReference Include="Umbraco.Community.SimpleTrees" Version="16.1.5-alpha0014" />
<PackageVersion Include="Umbraco.Community.SimpleTrees" Version="16.1.5-alpha0014" />
<PackageReference Include="Umbraco.Community.SimpleTrees" />
paket add Umbraco.Community.SimpleTrees --version 16.1.5-alpha0014
#r "nuget: Umbraco.Community.SimpleTrees, 16.1.5-alpha0014"
#:package Umbraco.Community.SimpleTrees@16.1.5-alpha0014
#addin nuget:?package=Umbraco.Community.SimpleTrees&version=16.1.5-alpha0014&prerelease
#tool nuget:?package=Umbraco.Community.SimpleTrees&version=16.1.5-alpha0014&prerelease
Umbraco.Community.SimpleTrees


This packages aims to help developers quickly put together Umbraco Trees using C#.
Features
- C# custom tree creation
- No javascript or umbraco-package.json files required
- Supports both Views & View Components
- Easy to define section permissions
- ✨ Custom Entity Actions!
Installation
Install Package
dotnet add package Umbraco.Community.SimpleTrees
Quick Start
Register Tree
By default, this will display in the content section.
using Umbraco.Cms.Core.Models;
using Umbraco.Community.SimpleTrees.Core.Models;
namespace Umbraco.Community.SimpleTrees.TestSite.Trees;
public class MyTree : SimpleTree
{
public override Task<PagedModel<ISimpleTreeItem>> GetTreeRootAsync(int skip, int take, bool foldersOnly)
{
var data = new List<ISimpleTreeItem>
{
CreateRootItem("James", Guid.NewGuid().ToString(), "icon-user"),
CreateRootItem("Tim", Guid.NewGuid().ToString(), "icon-user"),
};
return Task.FromResult(new PagedModel<ISimpleTreeItem>(data.Count, data));
}
public override Task<PagedModel<ISimpleTreeItem>> GetTreeChildrenAsync(string entityType, string parentUnique, int skip, int take, bool foldersOnly) => Task.FromResult(EmptyResult());
public override string Name => "My Tree";
}
Create Views
- Your views must go in
/Views/Trees - You views must be the name of your tree entities
- For example:
MyTree.cs⇒/Views/Trees/MyItem.cshtml&/Views/Trees/MyRoot.cshtml
- For example:
@inherits Umbraco.Community.SimpleTrees.Web.SimpleTreeViewPage
<uui-box headline="This is a custom tree item">
<div>
<table>
<thead>
<tr>
<th>Entity Type</th>
<th>Unique</th>
</tr>
</thead>
<tbody>
<tr>
<td>@Model.EntityType</td>
<td>@Model.Unique</td>
</tr>
</table>
</div>
</uui-box>
Contributing
Contributions to this package are most welcome! Please visit the Contributing page.
Acknowledgements (Thanks)
- LottePitcher - opinionated-package-starter
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net9.0 is compatible. net9.0-android was computed. net9.0-browser was computed. net9.0-ios was computed. net9.0-maccatalyst was computed. net9.0-macos was computed. net9.0-tvos was computed. net9.0-windows was computed. net10.0 was computed. net10.0-android was computed. net10.0-browser was computed. net10.0-ios was computed. net10.0-maccatalyst was computed. net10.0-macos was computed. net10.0-tvos was computed. net10.0-windows was computed. |
-
net9.0
- jcdcdev.Umbraco.Core (>= 16.2.0 && < 17.0.0)
- Umbraco.Cms.Api.Common (>= 16.0.0 && < 17.0.0)
- Umbraco.Cms.Api.Management (>= 16.0.0 && < 17.0.0)
- Umbraco.Cms.Web.Website (>= 16.0.0 && < 17.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 |
|---|---|---|
| 17.2.0 | 106 | 3/20/2026 |
| 17.2.0-alpha.1 | 52 | 3/19/2026 |
| 17.1.1 | 88 | 3/18/2026 |
| 17.1.1-alpha.15 | 48 | 3/17/2026 |
| 17.1.1-alpha.9 | 72 | 2/1/2026 |
| 17.1.1-alpha.7 | 56 | 2/1/2026 |
| 17.1.0 | 107 | 1/28/2026 |
| 17.1.0-alpha.2 | 57 | 1/28/2026 |
| 17.0.1 | 122 | 12/26/2025 |
| 17.0.1-alpha.3 | 148 | 12/22/2025 |
| 16.1.7 | 85 | 3/18/2026 |
| 16.1.6 | 96 | 2/16/2026 |
| 16.1.5 | 95 | 1/28/2026 |
| 16.1.5-alpha0036 | 98 | 1/28/2026 |
| 16.1.5-alpha0016 | 100 | 1/26/2026 |
| 16.1.5-alpha0014 | 95 | 1/26/2026 |
| 16.1.4 | 106 | 12/26/2025 |
| 16.1.4-alpha0003 | 121 | 12/26/2025 |
| 16.1.3 | 195 | 12/21/2025 |
| 16.1.3-alpha0023 | 285 | 12/17/2025 |