Axlis.Customizations.Controls.Sitecore102 0.1.0

dotnet add package Axlis.Customizations.Controls.Sitecore102 --version 0.1.0
                    
NuGet\Install-Package Axlis.Customizations.Controls.Sitecore102 -Version 0.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="Axlis.Customizations.Controls.Sitecore102" Version="0.1.0" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Axlis.Customizations.Controls.Sitecore102" Version="0.1.0" />
                    
Directory.Packages.props
<PackageReference Include="Axlis.Customizations.Controls.Sitecore102" />
                    
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 Axlis.Customizations.Controls.Sitecore102 --version 0.1.0
                    
#r "nuget: Axlis.Customizations.Controls.Sitecore102, 0.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 Axlis.Customizations.Controls.Sitecore102@0.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=Axlis.Customizations.Controls.Sitecore102&version=0.1.0
                    
Install as a Cake Addin
#tool nuget:?package=Axlis.Customizations.Controls.Sitecore102&version=0.1.0
                    
Install as a Cake Tool

Axlis.Customizations.Controls.Sitecore102

Axlis Banner

Sitecore Content Editor / Shell control customizations for Axlis.Customizations, compiled against Sitecore 10.2.x (Sitecore.Kernel + Sitecore.Web, both [10.2.0,10.3.0)).

Targets net48. This is a Sitecore-version-gated package by design — a future Sitecore 10.3/10.4/etc. line ships as a sibling package (Axlis.Customizations.Controls.SitecoreXXX), not a wider version range on this one.

What's in here

  • QueryableTreeList — extends the standard Sitecore TreeList field to support:
    • Query-based data sources (query: prefix), resolved via LookupSources.GetItems against the current content database.
    • IncludeTemplatesForDisplay / IncludeTemplatesForSelection parameters, layered on top of the resolved DataSource.
    • A [Not in selection list] header warning on items that fall outside the resolved data-source scope.

Install

This package depends on Sitecore.Kernel and Sitecore.Web, which are not on nuget.org. Add Sitecore's public feed to your own nuget.config (or global NuGet sources) before restoring:

<packageSources>
  <add key="sitecore" value="https://nuget.sitecore.com/resources/v3/index.json" />
</packageSources>
dotnet add package Axlis.Customizations.Controls.Sitecore102

Manual setup (required — nothing below is automated by installing the package)

1. Config include. A sample control-source registration ships as content/App_Config/zzz.Axlis.Customizations.QueryableTreeList.config.template inside the package (inert — the .template suffix keeps Sitecore's config watcher from loading it). Copy it into your App_Config/Include/ folder and drop the .template suffix:

<configuration xmlns:patch="http://www.sitecore.net/xmlconfig/">
  <sitecore>
    <controlSources>
      <source
        mode="on"
        namespace="Axlis.Customizations.Controls"
        assembly="Axlis.Customizations.Controls.Sitecore102"
        prefix="Axlis" />
    </controlSources>
  </sitecore>
</configuration>

2. Field Type item. This package intentionally does not ship a serialized Sitecore item (no assumed TDS/Unicorn/Sitecore CLI setup — Axlis is consumed across projects with different serialization tooling). Create it yourself under whichever /sitecore/system/Field types location fits your own tree, with:

Field Value
Assembly Axlis.Customizations.Controls.Sitecore102
Class Axlis.Customizations.Controls.QueryableTreeList
Control Axlis:QueryableTreeList

3. Verify (manual — there is no automated test coverage for this package; see "Testing" below):

  • Install into a real Sitecore 10.2.x instance with the config include and Field Type item above in place.
  • Confirm the control renders in the Content Editor on a field using this Field Type.
  • Confirm a query:-prefixed source resolves correctly against a real query.
  • Confirm the [Not in selection list] header warning appears for an item outside the resolved data source.

Testing

There is no Sitecore FakeDb (or equivalent) in this project's toolchain, and this package's logic is inherently coupled to Sitecore.Context, Item, and Sitecore's ServiceLocator — none of which run outside a real or faked Sitecore instance. Automated coverage is intentionally scoped to Axlis.Customizations.Abstractions instead; this package is verified manually per the checklist above before each release.

See the Axlis repository for full documentation.

Product Compatible and additional computed target framework versions.
.NET Framework net48 is compatible.  net481 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
0.1.0 56 8/5/2026