BlazorTable 1.17.0

dotnet add package BlazorTable --version 1.17.0
NuGet\Install-Package BlazorTable -Version 1.17.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="BlazorTable" Version="1.17.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add BlazorTable --version 1.17.0
#r "nuget: BlazorTable, 1.17.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.
// Install BlazorTable as a Cake Addin
#addin nuget:?package=BlazorTable&version=1.17.0

// Install BlazorTable as a Cake Tool
#tool nuget:?package=BlazorTable&version=1.17.0

BlazorTable

Demo Nuget (with prereleases) Nuget (with prereleases) alternate text is missing from this package README image

Blazor Table Component with Sorting, Paging and Filtering

Sample Gif

Install

  • Add BlazorTable Nuget
    • dotnet add package BlazorTable
  • Add to the index.html or _Hosts.cshtml
    • <script src="_content/BlazorTable/BlazorTable.min.js"></script>
  • Add call to Program.cs or Startup.cs
    • Services.AddBlazorTable();

Note: If installing BlazorTable in a hosted Blazor WASM application, these steps should be performed in the WASM Client project.

Features

  • Column Reordering
  • Edit Mode (Template Switching)
  • Client Side
    • Paging
    • Sorting
    • Filtering
      • Strings
      • Numbers
      • Dates
      • Enums
      • Custom Component

Dependencies

  • Bootstrap 4 CSS

Sample

Example Page

<Table TableItem="PersonData" Items="data" PageSize="15">
    <Column TableItem="PersonData" Title="Id" Field="@(x => x.id)" Sortable="true" Filterable="true" Width="10%" />
    <Column TableItem="PersonData" Title="First Name" Field="@(x => x.first_name)" Sortable="true" Filterable="true" Width="20%" />
    <Column TableItem="PersonData" Title="Last Name" Field="@(x => x.last_name)" Sortable="true" Filterable="true" Width="20%" />
    <Column TableItem="PersonData" Title="Email" Field="@(x => x.email)" Sortable="true" Filterable="true" Width="20%">
        <Template>
            <a href="mailto:@context.email">@context.email</a>
        </Template>
    </Column>
    <Column TableItem="PersonData" Title="Confirmed" Field="@(x => x.confirmed)" Sortable="true" Filterable="true" Width="10%" />
    <Column TableItem="PersonData" Title="Price" Field="@(x => x.price)" Sortable="true" Filterable="true" Width="10%" Format="C" Align="Align.Right" />
    <Column TableItem="PersonData" Title="Created Date" Field="@(x => x.created_date)" Sortable="true" Width="10%">
        <Template>
            @context.created_date.ToShortDateString()
        </Template>
    </Column>
    <Pager ShowPageNumber="true" ShowTotalCount="true" />
</Table>
Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
.NET Core netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.1 is compatible. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (3)

Showing the top 3 NuGet packages that depend on BlazorTable:

Package Downloads
Blazorized.AdminLte.Plugins

ADMINLTE plugins for Blazor is a collection of reusable components, with which you can easily develop digital services as a designer or developer. This project gathers a set of curated UI components that have been tested against the Blazorized AdminLTE project.

MoonCoreUI

A ui library for all moonlight panel like applications

MoonlightPluginBase

Use this package to install all dependencies a moonlight plugins needs

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.17.0 138,553 8/28/2021
1.16.0 1,284 8/15/2021
1.15.0 28,012 2/1/2021
1.14.0 15,527 11/26/2020
1.13.1 13,355 10/5/2020
1.13.0 506 10/5/2020
1.12.1 13,049 8/5/2020
1.12.0 608 7/29/2020
1.11.1 10,029 6/4/2020
1.11.0 1,215 5/18/2020
1.9.0 1,056 5/4/2020
1.8.1 931 4/23/2020
1.8.0 615 4/18/2020
1.7.2 782 4/5/2020
1.7.1 757 4/2/2020
1.7.0 516 4/1/2020
1.6.0 568 3/31/2020
1.5.1 1,169 3/22/2020
1.5.0 595 3/13/2020
1.4.0 872 3/9/2020
1.3.0 524 3/7/2020
1.2.0 522 3/5/2020
1.1.0 1,525 1/20/2020
1.0.9 531 1/16/2020
1.0.8 627 1/8/2020
1.0.7 611 1/6/2020
1.0.6 540 1/2/2020
1.0.5 603 12/20/2019
1.0.4 595 12/16/2019
1.0.3 672 12/11/2019
1.0.2 592 12/6/2019
1.0.1 584 12/4/2019
1.0.0 548 12/4/2019
0.0.9-preview3 435 11/15/2019
0.0.9-preview2 277 11/14/2019
0.0.8-preview2 302 11/6/2019
0.0.8-preview1 283 11/2/2019
0.0.7-preview1 287 10/26/2019
0.0.6-alpha 300 10/24/2019
0.0.5-alpha 289 10/23/2019
0.0.4-alpha 296 10/21/2019
0.0.3-alpha 288 10/21/2019
0.0.2-alpha 290 10/20/2019
0.0.1-alpha 307 10/19/2019