OC.PowerSort 17.1.0

dotnet add package OC.PowerSort --version 17.1.0
                    
NuGet\Install-Package OC.PowerSort -Version 17.1.0
                    
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="OC.PowerSort" Version="17.1.0" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="OC.PowerSort" Version="17.1.0" />
                    
Directory.Packages.props
<PackageReference Include="OC.PowerSort" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add OC.PowerSort --version 17.1.0
                    
#r "nuget: OC.PowerSort, 17.1.0"
                    
#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.
#:package OC.PowerSort@17.1.0
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=OC.PowerSort&version=17.1.0
                    
Install as a Cake Addin
#tool nuget:?package=OC.PowerSort&version=17.1.0
                    
Install as a Cake Tool

OC.PowerSort

Downloads NuGet GitHub license

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:

  1. Navigate to the "Users" section in your Umbraco backoffice
  2. Select the user group you want to grant access to
  3. In the "Sections" tab, check the box for "PowerSort"
  4. Save the changes
  5. 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.

  1. Navigate to the PowerSort section in your Umbraco backoffice
  2. Select the parent node containing the items you want to sort
  3. Use the PowerSort action to access advanced sorting options
  4. 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 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. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

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.