ColonnadeGrid 1.0.0-preview.2

This is a prerelease version of ColonnadeGrid.
There is a newer prerelease version of this package available.
See the version list below for details.
dotnet add package ColonnadeGrid --version 1.0.0-preview.2
                    
NuGet\Install-Package ColonnadeGrid -Version 1.0.0-preview.2
                    
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="ColonnadeGrid" Version="1.0.0-preview.2" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="ColonnadeGrid" Version="1.0.0-preview.2" />
                    
Directory.Packages.props
<PackageReference Include="ColonnadeGrid" />
                    
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 ColonnadeGrid --version 1.0.0-preview.2
                    
#r "nuget: ColonnadeGrid, 1.0.0-preview.2"
                    
#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 ColonnadeGrid@1.0.0-preview.2
                    
#: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=ColonnadeGrid&version=1.0.0-preview.2&prerelease
                    
Install as a Cake Addin
#tool nuget:?package=ColonnadeGrid&version=1.0.0-preview.2&prerelease
                    
Install as a Cake Tool

ColonnadeGrid

A Blazor data grid with saved views — show/hide, reorder, resize, sort, filter, and group columns, all in serializable state.

<ColonnadeGrid TItem="Issue" Items="@issues" EnableRowSelection="true">
    <Columns>
        <GridColumn Field="(Issue x) => x.Title" Title="Title" Sortable="true" Filterable="true" />
        <GridColumn Field="(Issue x) => x.Status" Title="Status" Groupable="true">
            <CellTemplate Context="issue">
                <StatusBadge Status="issue.Status" />
            </CellTemplate>
        </GridColumn>
        <GridColumn Field="(Issue x) => x.Assignee" Title="Assignee" Filterable="true" />
    </Columns>
</ColonnadeGrid>

Features

  • Column show/hide and reorder, via the Columns menu
  • Column resize, by dragging a header's right edge
  • Single-column sort (click a sortable header; cycles ascending/descending/none)
  • Per-column filtering with editors matched to the column's type: value checklists, number and duration ranges, relative date presets and date ranges, or text operators — with choices and limits taken from the data
  • Single-column grouping with collapsible, counted group headers
  • Row selection with a tri-state select-all header checkbox
  • Optional paging (EnablePaging) with a built-in pager; grouped views can list groups from their counts first and page each group separately
  • Works with a plain in-memory list (Items) or a pluggable IDataProvider<TItem> for server-side paging/sort/filter/group
  • Self-contained, CSS-isolated styling (no Bootstrap/Tailwind dependency), themeable via CSS custom properties (including your own dark theme)

Repository layout

src/ColonnadeGrid/           the component library (Razor Class Library, net10.0)
tests/ColonnadeGrid.Tests/   xUnit + bUnit test suite
samples/ColonnadeGrid.Demo/  a runnable Blazor WebAssembly demo app
samples/ColonnadeGrid.LargeData/  100,000 rows in Postgres behind an ASP.NET Core API, with server-side sort/filter/group and paging
docs/                        the developer guide (see below)

Documentation

Running it

To run the sample app:

dotnet run --project samples/ColonnadeGrid.Demo

To run the tests:

dotnet test tests/ColonnadeGrid.Tests/ColonnadeGrid.Tests.csproj

License

MIT

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
1.0.0-preview.7 40 9/22/2026
1.0.0-preview.6 49 9/22/2026
1.0.0-preview.5 42 9/22/2026
1.0.0-preview.4 49 9/15/2026
1.0.0-preview.3 56 9/15/2026
1.0.0-preview.2 52 9/14/2026