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.
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" />
<PackageReference Include="ColonnadeGrid" />
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
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#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
#tool nuget:?package=ColonnadeGrid&version=1.0.0-preview.2&prerelease
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
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 pluggableIDataProvider<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
- Getting started — installation and a quick start
- Columns — column reference, customization, and custom rendering
- Sorting, filtering, grouping, and view state
- Filtering — the filter editors and how their limits follow the data
- Row selection
- Paging — the pager, and paging each group separately
- Styling — sticky header, compact mode, and theming
- Data sources —
Itemsvs. your ownIDataProvider<TItem> - Working with large data sets
- Known limitations, Architecture, and Testing
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
| 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. |
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
-
net10.0
- BlazorOcticons (>= 1.3.0)
- Microsoft.AspNetCore.Components.Web (>= 10.0.11)
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 |