OC.PowerSort
17.1.0
dotnet add package OC.PowerSort --version 17.1.0
NuGet\Install-Package OC.PowerSort -Version 17.1.0
<PackageReference Include="OC.PowerSort" Version="17.1.0" />
<PackageVersion Include="OC.PowerSort" Version="17.1.0" />
<PackageReference Include="OC.PowerSort" />
paket add OC.PowerSort --version 17.1.0
#r "nuget: OC.PowerSort, 17.1.0"
#:package OC.PowerSort@17.1.0
#addin nuget:?package=OC.PowerSort&version=17.1.0
#tool nuget:?package=OC.PowerSort&version=17.1.0
OC.PowerSort
A powerful sorting extension for Umbraco CMS that provides enhanced sorting capabilities for content nodes in the backoffice.
Features
- Enhanced sorting options for Umbraco content nodes
- Easy-to-use backoffice integration
- Compatible with Umbraco v17+
Installation
Add the package to an existing Umbraco website (v17+) from nuget:
dotnet add package OC.PowerSort
Usage
Once the package is installed, before it will show in the backoffice, you need to allow the section in the user groups that you want to have access to it. To do this:
- Navigate to the "Users" section in your Umbraco backoffice
- Select the user group you want to grant access to
- In the "Sections" tab, check the box for "PowerSort"
- Save the changes
- Refresh your backoffice to see the new section available for users in that group
Once this is done, the package will automatically integrate with your Umbraco backoffice.
- Navigate to the PowerSort section in your Umbraco backoffice
- Select the parent node containing the items you want to sort
- Use the PowerSort action to access advanced sorting options
- Choose your sorting criteria and apply the changes
Frontend implementation
This package does not give a frontend implementation for displaying your content, that is up to you. What it does do is update the "sort order" of nodes. A very basic implementation could look like
@if(Model.Children().Any())
{
<ul>
@foreach(var child in Model.Children())
{
<li>@child.Name</li>
}
</ul>
}
else
{
<p>No children found.</p>
}
Configuration
No additional configuration is required other than granting access to the section for the relevant user groups as described in the usage section. The package will automatically integrate with your Umbraco backoffice and provide enhanced sorting capabilities for content nodes.
Requirements
- Umbraco v17+
- .NET 10
Contributing
Contributions to this package are most welcome! Please read the Contributing Guidelines.
Acknowledgments
This package has been created by Owain Williams and Harrie Mayhew. It is licensed under the MIT License (see LICENSE for details).
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net10.0 is compatible. 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. |
-
net10.0
- Umbraco.Cms.Api.Common (>= 17.0.0 && < 18.0.0)
- Umbraco.Cms.Api.Management (>= 17.0.0 && < 18.0.0)
- Umbraco.Cms.Web.Common (>= 17.0.0 && < 18.0.0)
- Umbraco.Cms.Web.Website (>= 17.0.0 && < 18.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.1.0 | 28 | 3/18/2026 |
Initial release with content sorting and scheduling capabilities.