Soenneker.Blazor.DataTables 2.1.322

Prefix Reserved
There is a newer version of this package available.
See the version list below for details.
dotnet add package Soenneker.Blazor.DataTables --version 2.1.322                
NuGet\Install-Package Soenneker.Blazor.DataTables -Version 2.1.322                
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="Soenneker.Blazor.DataTables" Version="2.1.322" />                
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Soenneker.Blazor.DataTables --version 2.1.322                
#r "nuget: Soenneker.Blazor.DataTables, 2.1.322"                
#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 Soenneker.Blazor.DataTables as a Cake Addin
#addin nuget:?package=Soenneker.Blazor.DataTables&version=2.1.322

// Install Soenneker.Blazor.DataTables as a Cake Tool
#tool nuget:?package=Soenneker.Blazor.DataTables&version=2.1.322                

alternate text is missing from this package README image alternate text is missing from this package README image alternate text is missing from this package README image

alternate text is missing from this package README image Soenneker.Blazor.DataTables

A Blazor interop library for DataTables

This library simplifies the integration of DataTables into Blazor applications, providing access to options, events, etc. A demo project showcasing common usages is included.

Diligence was taken to align the Blazor API with JS. Refer to the DataTables documentation for details. This is a work-in-progress; contribution is welcomed.

Installation

dotnet add package Soenneker.Blazor.DataTables

Add the following to your Startup.cs file

public void ConfigureServices(IServiceCollection services)
{
    services.AddDataTables();
}

Usage

@using Soenneker.Blazor.DataTables

<DataTable Options="_options">
    <thead>
        <tr>
            <th>Name</th>
            <th>Position</th>
            <th>Office</th>
            <th>Age</th>
            <th>Start date</th>
            <th>Salary</th>
        </tr>
    </thead>
    <tbody>
        <tr>
            <td>John Doe</td>
            <td>Developer</td>
            <td>London</td>
            <td>28</td>
            <td>2017/04/25</td>
            <td>$320,800</td>
        </tr>
    </tbody>
</DataTable>

@code{

    private readonly DataTableOptions _options_ = new()
    {
        Searching = true,
        LengthChange = false,
        Info = false,
        Paging = false,
        Order = [new object[] {0, "asc"}]
    };
}
Product Compatible and additional computed target framework versions.
.NET net8.0 is compatible.  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. 
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
2.1.427 0 10/18/2024
2.1.426 0 10/18/2024
2.1.425 0 10/18/2024
2.1.424 0 10/18/2024
2.1.423 0 10/18/2024
2.1.422 0 10/18/2024
2.1.421 0 10/18/2024
2.1.420 0 10/18/2024
2.1.419 8 10/17/2024
2.1.418 7 10/17/2024
2.1.417 19 10/17/2024
2.1.416 15 10/17/2024
2.1.415 26 10/17/2024
2.1.414 18 10/17/2024
2.1.413 20 10/17/2024
2.1.412 63 10/15/2024
2.1.411 62 10/15/2024
2.1.410 56 10/15/2024
2.1.409 58 10/15/2024
2.1.408 59 10/15/2024
2.1.407 55 10/15/2024
2.1.406 57 10/15/2024
2.1.405 57 10/15/2024
2.1.404 65 10/15/2024
2.1.403 61 10/15/2024
2.1.402 56 10/15/2024
2.1.401 64 10/14/2024
2.1.400 55 10/14/2024
2.1.399 55 10/14/2024
2.1.398 61 10/14/2024
2.1.397 66 10/13/2024
2.1.396 61 10/13/2024
2.1.395 69 10/13/2024
2.1.394 67 10/12/2024
2.1.393 69 10/12/2024
2.1.392 65 10/12/2024
2.1.391 72 10/12/2024
2.1.390 64 10/12/2024
2.1.389 61 10/12/2024
2.1.388 65 10/12/2024
2.1.387 60 10/12/2024
2.1.386 66 10/12/2024
2.1.385 66 10/12/2024
2.1.384 69 10/11/2024
2.1.383 60 10/11/2024
2.1.382 63 10/11/2024
2.1.381 79 10/11/2024
2.1.380 65 10/11/2024
2.1.379 61 10/11/2024
2.1.378 71 10/11/2024
2.1.377 69 10/9/2024
2.1.376 63 10/9/2024
2.1.375 63 10/9/2024
2.1.374 71 10/9/2024
2.1.373 65 10/9/2024
2.1.372 65 10/9/2024
2.1.371 60 10/9/2024
2.1.370 60 10/9/2024
2.1.369 64 10/9/2024
2.1.368 62 10/9/2024
2.1.367 63 10/9/2024
2.1.366 61 10/9/2024
2.1.365 64 10/9/2024
2.1.364 59 10/9/2024
2.1.362 58 10/9/2024
2.1.361 61 10/9/2024
2.1.360 64 10/9/2024
2.1.359 62 10/9/2024
2.1.358 64 10/8/2024
2.1.357 65 10/8/2024
2.1.356 72 10/8/2024
2.1.355 65 10/8/2024
2.1.354 73 10/8/2024
2.1.353 68 10/8/2024
2.1.352 65 10/8/2024
2.1.351 68 10/8/2024
2.1.350 66 10/8/2024
2.1.349 71 10/8/2024
2.1.348 58 10/8/2024
2.1.347 63 10/8/2024
2.1.346 70 10/8/2024
2.1.345 64 10/8/2024
2.1.344 67 10/8/2024
2.1.343 67 10/8/2024
2.1.342 76 10/7/2024
2.1.341 63 10/4/2024
2.1.340 66 10/4/2024
2.1.339 69 10/3/2024
2.1.338 68 10/3/2024
2.1.337 70 10/3/2024
2.1.336 79 10/3/2024
2.1.335 66 10/3/2024
2.1.334 66 10/3/2024
2.1.333 67 10/3/2024
2.1.332 63 10/3/2024
2.1.331 54 10/3/2024
2.1.330 52 10/3/2024
2.1.329 69 10/3/2024
2.1.328 68 10/3/2024
2.1.327 72 10/3/2024
2.1.326 57 10/3/2024
2.1.325 55 10/3/2024
2.1.324 71 10/3/2024
2.1.323 63 10/3/2024
2.1.322 62 10/3/2024
2.1.321 68 10/3/2024
2.1.320 66 10/3/2024
2.1.319 65 10/3/2024
2.1.318 60 10/3/2024
2.1.317 71 10/2/2024
2.1.316 63 10/2/2024
2.1.315 67 10/2/2024
2.1.314 73 10/2/2024
2.1.313 65 10/2/2024
2.1.312 58 10/2/2024
2.1.311 73 10/2/2024
2.1.310 69 10/2/2024
2.1.309 65 10/2/2024
2.1.308 71 10/2/2024
2.1.307 63 10/2/2024
2.1.306 61 10/2/2024
2.1.305 63 10/2/2024
2.1.304 69 10/2/2024
2.1.303 69 10/2/2024
2.1.302 74 10/2/2024
2.1.301 66 10/2/2024
2.1.300 74 10/2/2024
2.1.299 73 10/2/2024
2.1.298 69 10/2/2024
2.1.297 63 10/2/2024
2.1.296 75 10/2/2024
2.1.295 79 10/2/2024
2.1.294 72 10/2/2024
2.1.293 64 10/1/2024
2.1.292 78 10/1/2024
2.1.291 70 10/1/2024
2.1.290 71 10/1/2024
2.1.289 72 10/1/2024
2.1.288 74 10/1/2024
2.1.287 70 10/1/2024
2.1.286 73 10/1/2024
2.1.285 62 10/1/2024
2.1.284 72 10/1/2024
2.1.283 62 10/1/2024
2.1.282 67 10/1/2024
2.1.281 87 10/1/2024
2.1.280 66 10/1/2024
2.1.279 69 10/1/2024
2.1.278 75 10/1/2024
2.1.277 87 9/30/2024
2.1.276 75 9/30/2024
2.1.275 62 9/30/2024
2.1.274 80 9/30/2024
2.1.273 83 9/30/2024
2.1.272 70 9/30/2024
2.1.271 76 9/29/2024
2.1.270 66 9/29/2024
2.1.269 72 9/29/2024
2.1.268 70 9/29/2024
2.1.267 78 9/29/2024
2.1.266 66 9/29/2024
2.1.265 70 9/29/2024
2.1.264 77 9/29/2024
2.1.263 76 9/29/2024
2.1.262 64 9/29/2024
2.1.261 83 9/29/2024
2.1.259 79 9/29/2024
2.1.258 70 9/29/2024
2.1.257 73 9/29/2024
2.1.256 66 9/29/2024
2.1.255 63 9/29/2024
2.1.254 69 9/28/2024
2.1.253 78 9/28/2024
2.1.252 74 9/27/2024
2.1.251 87 9/27/2024
2.1.250 73 9/27/2024
2.1.249 69 9/27/2024
2.1.248 74 9/27/2024
2.1.247 83 9/27/2024
2.1.246 86 9/27/2024
2.1.245 68 9/27/2024
2.1.244 80 9/27/2024
2.1.243 71 9/27/2024
2.1.242 68 9/27/2024
2.1.241 68 9/27/2024
2.1.240 78 9/27/2024
2.1.239 63 9/27/2024
2.1.238 74 9/27/2024
2.1.237 81 9/27/2024
2.1.236 84 9/27/2024
2.1.235 78 9/27/2024
2.1.234 65 9/27/2024
2.1.233 65 9/27/2024
2.1.232 77 9/27/2024
2.1.231 76 9/27/2024
2.1.230 67 9/27/2024
2.1.229 87 9/27/2024
2.1.228 65 9/27/2024
2.1.227 76 9/27/2024
2.1.226 72 9/27/2024
2.1.225 80 9/27/2024
2.1.224 64 9/27/2024
2.1.223 82 9/26/2024
2.1.222 68 9/26/2024
2.1.221 65 9/26/2024
2.1.220 75 9/26/2024
2.1.219 71 9/26/2024
2.1.218 70 9/26/2024
2.1.217 78 9/26/2024
2.1.216 76 9/26/2024
2.1.215 72 9/26/2024
2.1.214 74 9/26/2024
2.1.213 75 9/26/2024
2.1.211 72 9/26/2024
2.1.210 69 9/26/2024
2.1.209 81 9/26/2024
2.1.208 75 9/26/2024
2.1.207 90 9/26/2024
2.1.206 79 9/26/2024
2.1.204 76 9/26/2024
2.1.203 67 9/26/2024
2.1.202 70 9/26/2024
2.1.201 81 9/26/2024
2.1.200 69 9/26/2024
2.1.199 84 9/26/2024
2.1.198 71 9/26/2024
2.1.197 66 9/25/2024
2.1.196 69 9/24/2024
2.1.195 64 9/24/2024
2.1.194 70 9/24/2024
2.1.193 67 9/24/2024
2.1.192 70 9/23/2024
2.1.191 65 9/23/2024
2.1.190 69 9/23/2024
2.1.189 66 9/23/2024
2.1.188 69 9/23/2024
2.1.187 64 9/23/2024
2.1.186 78 9/23/2024
2.1.185 73 9/23/2024
2.1.184 66 9/23/2024
2.1.183 69 9/23/2024
2.1.182 77 9/23/2024
2.1.181 68 9/23/2024
2.1.180 60 9/23/2024
2.1.179 68 9/23/2024
2.1.178 68 9/23/2024
2.1.177 70 9/23/2024
2.1.176 71 9/23/2024
2.1.175 65 9/23/2024
2.1.174 65 9/23/2024
2.1.173 68 9/23/2024
2.1.172 66 9/23/2024
2.1.171 71 9/23/2024
2.1.170 69 9/23/2024
2.1.169 67 9/23/2024
2.1.168 67 9/23/2024
2.1.167 63 9/23/2024
2.1.166 71 9/23/2024
2.1.165 69 9/23/2024
2.1.164 63 9/23/2024
2.1.163 50 9/23/2024
2.1.162 68 9/23/2024
2.1.161 60 9/23/2024
2.1.160 70 9/23/2024
2.1.159 62 9/23/2024
2.1.158 71 9/23/2024
2.1.157 68 9/23/2024
2.1.156 68 9/23/2024
2.1.155 77 9/23/2024
2.1.154 63 9/23/2024
2.1.153 68 9/23/2024
2.1.152 70 9/23/2024
2.1.151 68 9/23/2024
2.1.150 80 9/22/2024
2.1.149 71 9/19/2024
2.1.148 63 9/19/2024
2.1.147 64 9/18/2024
2.1.146 74 9/18/2024
2.1.145 75 9/18/2024
2.1.144 65 9/18/2024
2.1.143 79 9/18/2024
2.1.142 77 9/18/2024
2.1.141 83 9/18/2024
2.1.140 84 9/18/2024
2.1.139 78 9/18/2024
2.1.138 75 9/18/2024
2.1.137 78 9/18/2024
2.1.136 75 9/18/2024
2.1.135 81 9/18/2024
2.1.134 78 9/18/2024
2.1.133 73 9/18/2024
2.1.132 83 9/18/2024
2.1.131 77 9/18/2024
2.1.130 83 9/18/2024
2.1.129 82 9/17/2024
2.1.128 79 9/17/2024
2.1.127 81 9/17/2024
2.1.126 84 9/17/2024
2.1.124 76 9/17/2024
2.1.123 72 9/17/2024
2.1.122 84 9/17/2024
2.1.121 78 9/17/2024
2.1.120 83 9/17/2024
2.1.119 84 9/17/2024
2.1.118 78 9/17/2024
2.1.117 84 9/17/2024
2.1.116 71 9/17/2024
2.1.115 86 9/17/2024
2.1.114 76 9/17/2024
2.1.113 75 9/17/2024
2.1.112 73 9/17/2024
2.1.111 74 9/17/2024
2.1.110 77 9/17/2024
2.1.109 87 9/17/2024
2.1.108 96 9/17/2024
2.1.107 63 9/17/2024
2.1.106 63 9/17/2024
2.1.105 76 9/17/2024
2.1.104 69 9/17/2024
2.1.103 93 9/16/2024
2.1.102 81 9/16/2024
2.1.101 79 9/16/2024
2.1.100 86 9/16/2024
2.1.99 79 9/16/2024
2.1.98 125 9/16/2024
2.1.97 80 9/16/2024
2.1.96 90 9/16/2024
2.1.95 86 9/16/2024
2.1.94 86 9/16/2024
2.1.93 98 9/13/2024
2.1.92 87 9/13/2024
2.1.91 99 9/12/2024
2.1.90 87 9/12/2024
2.1.89 94 9/12/2024
2.1.88 93 9/12/2024
2.1.87 94 9/12/2024
2.1.86 88 9/12/2024
2.1.85 86 9/12/2024
2.1.84 74 9/12/2024
2.1.83 79 9/12/2024
2.1.82 116 9/12/2024
2.1.81 92 9/12/2024
2.1.80 90 9/12/2024
2.1.79 96 9/12/2024
2.1.78 89 9/12/2024
2.1.77 97 9/12/2024
2.1.76 97 9/11/2024
2.1.75 77 9/11/2024
2.1.74 99 9/11/2024
2.1.73 100 9/11/2024
2.1.72 100 9/11/2024
2.1.71 101 9/11/2024
2.1.70 89 9/11/2024
2.1.69 92 9/11/2024
2.1.68 86 9/11/2024
2.1.67 100 9/11/2024
2.1.66 99 9/11/2024
2.1.65 94 9/11/2024
2.1.64 92 9/11/2024
2.1.63 98 9/11/2024
2.1.62 88 9/11/2024
2.1.61 95 9/11/2024
2.1.60 104 9/11/2024
2.1.59 94 9/11/2024
2.1.58 75 9/11/2024
2.1.57 83 9/11/2024
2.1.56 86 9/11/2024
2.1.55 96 9/11/2024
2.1.54 90 9/11/2024
2.1.53 94 9/11/2024
2.1.52 85 9/11/2024
2.1.51 86 9/10/2024
2.1.50 89 9/10/2024
2.1.49 75 9/10/2024
2.1.48 68 9/10/2024
2.1.47 74 9/10/2024
2.1.46 86 9/10/2024
2.1.45 86 9/10/2024
2.1.44 89 9/10/2024
2.1.43 67 9/10/2024
2.1.42 65 9/10/2024
2.1.41 90 9/10/2024
2.1.40 63 9/10/2024
2.1.39 87 9/10/2024
2.1.38 79 9/10/2024
2.1.37 81 9/10/2024
2.1.36 82 9/10/2024
2.1.35 90 9/10/2024
2.1.34 89 9/10/2024
2.1.33 84 9/10/2024
2.1.30 80 9/10/2024
2.1.29 82 9/10/2024
2.1.28 83 9/10/2024
2.1.27 70 9/10/2024
2.1.25 87 9/9/2024
2.1.24 80 9/9/2024
2.1.23 65 9/9/2024
2.1.22 64 9/9/2024
2.1.21 79 9/9/2024
2.1.20 66 9/9/2024
2.1.19 60 9/9/2024
2.1.18 66 9/9/2024
2.1.16 64 9/9/2024
2.1.15 69 9/9/2024
2.1.13 88 9/9/2024
2.1.12 72 9/9/2024
2.1.11 91 9/9/2024
2.1.10 72 9/9/2024
2.1.9 66 9/9/2024
2.1.8 93 9/9/2024
2.1.7 86 9/9/2024
2.1.6 76 9/8/2024