ColonnadeGrid 1.0.0-preview.7
dotnet add package ColonnadeGrid --version 1.0.0-preview.7
NuGet\Install-Package ColonnadeGrid -Version 1.0.0-preview.7
<PackageReference Include="ColonnadeGrid" Version="1.0.0-preview.7" />
<PackageVersion Include="ColonnadeGrid" Version="1.0.0-preview.7" />
<PackageReference Include="ColonnadeGrid" />
paket add ColonnadeGrid --version 1.0.0-preview.7
#r "nuget: ColonnadeGrid, 1.0.0-preview.7"
#:package ColonnadeGrid@1.0.0-preview.7
#addin nuget:?package=ColonnadeGrid&version=1.0.0-preview.7&prerelease
#tool nuget:?package=ColonnadeGrid&version=1.0.0-preview.7&prerelease
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. |
-
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 |
Column menus now portal to the document body so they anchor to their trigger and are never clipped by host containers (transform/overflow); outside-click still closes them. Redesigned pager to first/prev/"Page X of Y"/next/last with a double-chevron icon. Added GridColumn.MenuTitle. Fixed the rows-per-page selector losing the initial size, the filter popup repositioning, and row highlight/underbar not spanning horizontally scrolled columns.