Soenneker.Blazor.DataTables 2.1.128

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.128                
NuGet\Install-Package Soenneker.Blazor.DataTables -Version 2.1.128                
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.128" />                
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.128                
#r "nuget: Soenneker.Blazor.DataTables, 2.1.128"                
#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.128

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

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.549 0 11/9/2024
2.1.548 0 11/9/2024
2.1.547 0 11/9/2024
2.1.546 0 11/9/2024
2.1.545 11 11/9/2024
2.1.544 8 11/9/2024
2.1.543 8 11/9/2024
2.1.542 25 11/9/2024
2.1.541 17 11/9/2024
2.1.540 18 11/9/2024
2.1.539 20 11/9/2024
2.1.538 23 11/9/2024
2.1.537 21 11/9/2024
2.1.536 23 11/9/2024
2.1.535 19 11/9/2024
2.1.534 28 11/8/2024
2.1.533 25 11/8/2024
2.1.532 25 11/8/2024
2.1.531 28 11/8/2024
2.1.530 26 11/8/2024
2.1.529 33 11/8/2024
2.1.528 28 11/8/2024
2.1.527 30 11/8/2024
2.1.526 29 11/8/2024
2.1.525 28 11/8/2024
2.1.524 27 11/8/2024
2.1.523 30 11/8/2024
2.1.522 28 11/8/2024
2.1.521 26 11/8/2024
2.1.520 27 11/8/2024
2.1.519 29 11/8/2024
2.1.518 28 11/8/2024
2.1.517 28 11/8/2024
2.1.516 29 11/8/2024
2.1.515 29 11/7/2024
2.1.514 31 11/7/2024
2.1.513 40 11/6/2024
2.1.512 49 11/6/2024
2.1.511 55 11/6/2024
2.1.510 50 11/6/2024
2.1.509 63 11/2/2024
2.1.508 66 11/1/2024
2.1.507 64 11/1/2024
2.1.506 70 11/1/2024
2.1.505 57 11/1/2024
2.1.504 57 11/1/2024
2.1.503 60 11/1/2024
2.1.502 59 11/1/2024
2.1.501 62 11/1/2024
2.1.500 72 11/1/2024
2.1.499 65 11/1/2024
2.1.498 59 11/1/2024
2.1.497 57 10/31/2024
2.1.496 74 10/29/2024
2.1.495 58 10/29/2024
2.1.494 68 10/29/2024
2.1.493 65 10/29/2024
2.1.492 64 10/29/2024
2.1.491 59 10/29/2024
2.1.490 65 10/29/2024
2.1.489 67 10/29/2024
2.1.488 69 10/29/2024
2.1.487 65 10/29/2024
2.1.486 55 10/29/2024
2.1.485 57 10/29/2024
2.1.484 63 10/29/2024
2.1.483 67 10/29/2024
2.1.481 62 10/29/2024
2.1.480 57 10/29/2024
2.1.479 67 10/29/2024
2.1.478 59 10/29/2024
2.1.477 61 10/29/2024
2.1.476 64 10/29/2024
2.1.475 68 10/29/2024
2.1.474 63 10/29/2024
2.1.473 63 10/29/2024
2.1.472 63 10/29/2024
2.1.471 59 10/29/2024
2.1.470 62 10/29/2024
2.1.469 61 10/29/2024
2.1.468 69 10/29/2024
2.1.467 58 10/29/2024
2.1.466 61 10/29/2024
2.1.465 59 10/28/2024
2.1.464 56 10/28/2024
2.1.463 69 10/28/2024
2.1.462 67 10/28/2024
2.1.461 83 10/28/2024
2.1.460 69 10/26/2024
2.1.459 65 10/26/2024
2.1.458 66 10/26/2024
2.1.457 70 10/26/2024
2.1.456 69 10/26/2024
2.1.455 64 10/26/2024
2.1.454 66 10/26/2024
2.1.453 67 10/26/2024
2.1.452 72 10/26/2024
2.1.451 59 10/26/2024
2.1.450 75 10/23/2024
2.1.449 64 10/23/2024
2.1.448 65 10/22/2024
2.1.447 65 10/22/2024
2.1.446 66 10/22/2024
2.1.445 61 10/22/2024
2.1.444 59 10/22/2024
2.1.443 55 10/22/2024
2.1.442 62 10/22/2024
2.1.441 65 10/22/2024
2.1.440 67 10/22/2024
2.1.439 63 10/22/2024
2.1.438 69 10/22/2024
2.1.437 65 10/22/2024
2.1.436 74 10/22/2024
2.1.435 66 10/22/2024
2.1.434 63 10/22/2024
2.1.433 62 10/22/2024
2.1.432 59 10/22/2024
2.1.431 54 10/22/2024
2.1.430 66 10/22/2024
2.1.429 65 10/22/2024
2.1.428 60 10/22/2024
2.1.427 103 10/18/2024
2.1.426 103 10/18/2024
2.1.425 104 10/18/2024
2.1.424 102 10/18/2024
2.1.423 101 10/18/2024
2.1.422 102 10/18/2024
2.1.421 99 10/18/2024
2.1.420 98 10/18/2024
2.1.419 68 10/17/2024
2.1.418 72 10/17/2024
2.1.417 66 10/17/2024
2.1.416 66 10/17/2024
2.1.415 74 10/17/2024
2.1.414 70 10/17/2024
2.1.413 68 10/17/2024
2.1.412 72 10/15/2024
2.1.411 71 10/15/2024
2.1.410 65 10/15/2024
2.1.409 67 10/15/2024
2.1.408 68 10/15/2024
2.1.407 65 10/15/2024
2.1.406 66 10/15/2024
2.1.405 67 10/15/2024
2.1.404 74 10/15/2024
2.1.403 70 10/15/2024
2.1.402 65 10/15/2024
2.1.401 73 10/14/2024
2.1.400 64 10/14/2024
2.1.399 64 10/14/2024
2.1.398 70 10/14/2024
2.1.397 75 10/13/2024
2.1.396 70 10/13/2024
2.1.395 78 10/13/2024
2.1.394 76 10/12/2024
2.1.393 78 10/12/2024
2.1.392 74 10/12/2024
2.1.391 81 10/12/2024
2.1.390 73 10/12/2024
2.1.389 70 10/12/2024
2.1.388 74 10/12/2024
2.1.387 69 10/12/2024
2.1.386 75 10/12/2024
2.1.385 75 10/12/2024
2.1.384 78 10/11/2024
2.1.383 69 10/11/2024
2.1.382 72 10/11/2024
2.1.381 88 10/11/2024
2.1.380 74 10/11/2024
2.1.379 70 10/11/2024
2.1.378 80 10/11/2024
2.1.377 78 10/9/2024
2.1.376 72 10/9/2024
2.1.375 72 10/9/2024
2.1.374 80 10/9/2024
2.1.373 74 10/9/2024
2.1.372 74 10/9/2024
2.1.371 69 10/9/2024
2.1.370 86 10/9/2024
2.1.369 73 10/9/2024
2.1.368 71 10/9/2024
2.1.367 72 10/9/2024
2.1.366 70 10/9/2024
2.1.365 73 10/9/2024
2.1.364 68 10/9/2024
2.1.362 67 10/9/2024
2.1.361 70 10/9/2024
2.1.360 72 10/9/2024
2.1.359 70 10/9/2024
2.1.358 72 10/8/2024
2.1.357 73 10/8/2024
2.1.356 80 10/8/2024
2.1.355 73 10/8/2024
2.1.354 81 10/8/2024
2.1.353 76 10/8/2024
2.1.352 73 10/8/2024
2.1.351 76 10/8/2024
2.1.350 74 10/8/2024
2.1.349 79 10/8/2024
2.1.348 66 10/8/2024
2.1.347 71 10/8/2024
2.1.346 78 10/8/2024
2.1.345 72 10/8/2024
2.1.344 75 10/8/2024
2.1.343 75 10/8/2024
2.1.342 84 10/7/2024
2.1.341 73 10/4/2024
2.1.340 75 10/4/2024
2.1.339 78 10/3/2024
2.1.338 79 10/3/2024
2.1.337 81 10/3/2024
2.1.336 90 10/3/2024
2.1.335 77 10/3/2024
2.1.334 75 10/3/2024
2.1.333 76 10/3/2024
2.1.332 74 10/3/2024
2.1.331 64 10/3/2024
2.1.330 63 10/3/2024
2.1.329 78 10/3/2024
2.1.328 77 10/3/2024
2.1.327 81 10/3/2024
2.1.326 66 10/3/2024
2.1.325 64 10/3/2024
2.1.324 81 10/3/2024
2.1.323 71 10/3/2024
2.1.322 71 10/3/2024
2.1.321 76 10/3/2024
2.1.320 75 10/3/2024
2.1.319 74 10/3/2024
2.1.318 69 10/3/2024
2.1.317 80 10/2/2024
2.1.316 72 10/2/2024
2.1.315 76 10/2/2024
2.1.314 82 10/2/2024
2.1.313 74 10/2/2024
2.1.312 67 10/2/2024
2.1.311 81 10/2/2024
2.1.310 77 10/2/2024
2.1.309 73 10/2/2024
2.1.308 80 10/2/2024
2.1.307 71 10/2/2024
2.1.306 70 10/2/2024
2.1.305 71 10/2/2024
2.1.304 78 10/2/2024
2.1.303 78 10/2/2024
2.1.302 82 10/2/2024
2.1.301 75 10/2/2024
2.1.300 82 10/2/2024
2.1.299 82 10/2/2024
2.1.298 78 10/2/2024
2.1.297 72 10/2/2024
2.1.296 84 10/2/2024
2.1.295 90 10/2/2024
2.1.294 83 10/2/2024
2.1.293 73 10/1/2024
2.1.292 87 10/1/2024
2.1.291 79 10/1/2024
2.1.290 80 10/1/2024
2.1.289 81 10/1/2024
2.1.288 82 10/1/2024
2.1.287 78 10/1/2024
2.1.286 82 10/1/2024
2.1.285 70 10/1/2024
2.1.284 80 10/1/2024
2.1.283 71 10/1/2024
2.1.282 76 10/1/2024
2.1.281 96 10/1/2024
2.1.280 75 10/1/2024
2.1.279 78 10/1/2024
2.1.278 84 10/1/2024
2.1.277 96 9/30/2024
2.1.276 84 9/30/2024
2.1.275 68 9/30/2024
2.1.274 88 9/30/2024
2.1.273 91 9/30/2024
2.1.272 78 9/30/2024
2.1.271 84 9/29/2024
2.1.270 73 9/29/2024
2.1.269 79 9/29/2024
2.1.268 77 9/29/2024
2.1.267 85 9/29/2024
2.1.266 73 9/29/2024
2.1.265 77 9/29/2024
2.1.264 84 9/29/2024
2.1.263 83 9/29/2024
2.1.262 72 9/29/2024
2.1.261 90 9/29/2024
2.1.259 86 9/29/2024
2.1.258 77 9/29/2024
2.1.257 80 9/29/2024
2.1.256 73 9/29/2024
2.1.255 70 9/29/2024
2.1.254 76 9/28/2024
2.1.253 85 9/28/2024
2.1.252 81 9/27/2024
2.1.251 94 9/27/2024
2.1.250 80 9/27/2024
2.1.249 76 9/27/2024
2.1.248 81 9/27/2024
2.1.247 90 9/27/2024
2.1.246 93 9/27/2024
2.1.245 75 9/27/2024
2.1.244 87 9/27/2024
2.1.243 78 9/27/2024
2.1.242 75 9/27/2024
2.1.241 75 9/27/2024
2.1.240 85 9/27/2024
2.1.239 70 9/27/2024
2.1.238 81 9/27/2024
2.1.237 88 9/27/2024
2.1.236 91 9/27/2024
2.1.235 85 9/27/2024
2.1.234 72 9/27/2024
2.1.233 72 9/27/2024
2.1.232 84 9/27/2024
2.1.231 83 9/27/2024
2.1.230 74 9/27/2024
2.1.229 94 9/27/2024
2.1.228 72 9/27/2024
2.1.227 83 9/27/2024
2.1.226 79 9/27/2024
2.1.225 87 9/27/2024
2.1.224 71 9/27/2024
2.1.223 89 9/26/2024
2.1.222 75 9/26/2024
2.1.221 72 9/26/2024
2.1.220 82 9/26/2024
2.1.219 78 9/26/2024
2.1.218 77 9/26/2024
2.1.217 85 9/26/2024
2.1.216 83 9/26/2024
2.1.215 79 9/26/2024
2.1.214 81 9/26/2024
2.1.213 82 9/26/2024
2.1.211 79 9/26/2024
2.1.210 76 9/26/2024
2.1.209 88 9/26/2024
2.1.208 82 9/26/2024
2.1.207 97 9/26/2024
2.1.206 86 9/26/2024
2.1.204 83 9/26/2024
2.1.203 74 9/26/2024
2.1.202 77 9/26/2024
2.1.201 88 9/26/2024
2.1.200 76 9/26/2024
2.1.199 91 9/26/2024
2.1.198 78 9/26/2024
2.1.197 73 9/25/2024
2.1.196 76 9/24/2024
2.1.195 71 9/24/2024
2.1.194 77 9/24/2024
2.1.193 74 9/24/2024
2.1.192 77 9/23/2024
2.1.191 72 9/23/2024
2.1.190 76 9/23/2024
2.1.189 73 9/23/2024
2.1.188 76 9/23/2024
2.1.187 71 9/23/2024
2.1.186 85 9/23/2024
2.1.185 80 9/23/2024
2.1.184 73 9/23/2024
2.1.183 76 9/23/2024
2.1.182 84 9/23/2024
2.1.181 75 9/23/2024
2.1.180 67 9/23/2024
2.1.179 75 9/23/2024
2.1.178 75 9/23/2024
2.1.177 77 9/23/2024
2.1.176 78 9/23/2024
2.1.175 72 9/23/2024
2.1.174 72 9/23/2024
2.1.173 75 9/23/2024
2.1.172 73 9/23/2024
2.1.171 78 9/23/2024
2.1.170 76 9/23/2024
2.1.169 74 9/23/2024
2.1.168 74 9/23/2024
2.1.167 70 9/23/2024
2.1.166 78 9/23/2024
2.1.165 76 9/23/2024
2.1.164 70 9/23/2024
2.1.163 57 9/23/2024
2.1.162 75 9/23/2024
2.1.161 67 9/23/2024
2.1.160 77 9/23/2024
2.1.159 69 9/23/2024
2.1.158 78 9/23/2024
2.1.157 75 9/23/2024
2.1.156 75 9/23/2024
2.1.155 84 9/23/2024
2.1.154 70 9/23/2024
2.1.153 75 9/23/2024
2.1.152 77 9/23/2024
2.1.151 75 9/23/2024
2.1.150 87 9/22/2024
2.1.149 78 9/19/2024
2.1.148 70 9/19/2024
2.1.147 71 9/18/2024
2.1.146 81 9/18/2024
2.1.145 82 9/18/2024
2.1.144 72 9/18/2024
2.1.143 86 9/18/2024
2.1.142 84 9/18/2024
2.1.141 90 9/18/2024
2.1.140 91 9/18/2024
2.1.139 85 9/18/2024
2.1.138 86 9/18/2024
2.1.137 89 9/18/2024
2.1.136 86 9/18/2024
2.1.135 92 9/18/2024
2.1.134 88 9/18/2024
2.1.133 84 9/18/2024
2.1.132 94 9/18/2024
2.1.131 88 9/18/2024
2.1.130 94 9/18/2024
2.1.129 90 9/17/2024
2.1.128 88 9/17/2024
2.1.127 92 9/17/2024
2.1.126 95 9/17/2024
2.1.124 88 9/17/2024
2.1.123 84 9/17/2024
2.1.122 96 9/17/2024
2.1.121 90 9/17/2024
2.1.120 95 9/17/2024
2.1.119 96 9/17/2024
2.1.118 91 9/17/2024
2.1.117 98 9/17/2024
2.1.116 83 9/17/2024
2.1.115 98 9/17/2024
2.1.114 88 9/17/2024
2.1.113 86 9/17/2024
2.1.112 85 9/17/2024
2.1.111 86 9/17/2024
2.1.110 89 9/17/2024
2.1.109 99 9/17/2024
2.1.108 108 9/17/2024
2.1.107 71 9/17/2024
2.1.106 75 9/17/2024
2.1.105 84 9/17/2024
2.1.104 77 9/17/2024
2.1.103 99 9/16/2024
2.1.102 87 9/16/2024
2.1.101 85 9/16/2024
2.1.100 92 9/16/2024
2.1.99 86 9/16/2024
2.1.98 132 9/16/2024
2.1.97 87 9/16/2024
2.1.96 98 9/16/2024
2.1.95 93 9/16/2024
2.1.94 93 9/16/2024
2.1.93 105 9/13/2024
2.1.92 95 9/13/2024
2.1.91 106 9/12/2024
2.1.90 95 9/12/2024
2.1.89 101 9/12/2024
2.1.88 100 9/12/2024
2.1.87 101 9/12/2024
2.1.86 95 9/12/2024
2.1.85 93 9/12/2024
2.1.84 82 9/12/2024
2.1.83 87 9/12/2024
2.1.82 124 9/12/2024
2.1.81 100 9/12/2024
2.1.80 99 9/12/2024
2.1.79 103 9/12/2024
2.1.78 96 9/12/2024
2.1.77 104 9/12/2024
2.1.76 105 9/11/2024
2.1.75 84 9/11/2024
2.1.74 106 9/11/2024
2.1.73 107 9/11/2024
2.1.72 107 9/11/2024
2.1.71 108 9/11/2024
2.1.70 96 9/11/2024
2.1.69 100 9/11/2024
2.1.68 93 9/11/2024
2.1.67 107 9/11/2024
2.1.66 106 9/11/2024
2.1.65 102 9/11/2024
2.1.64 99 9/11/2024
2.1.63 106 9/11/2024
2.1.62 97 9/11/2024
2.1.61 104 9/11/2024
2.1.60 113 9/11/2024
2.1.59 103 9/11/2024
2.1.58 84 9/11/2024
2.1.57 91 9/11/2024
2.1.56 94 9/11/2024
2.1.55 105 9/11/2024
2.1.54 99 9/11/2024
2.1.53 103 9/11/2024
2.1.52 93 9/11/2024
2.1.51 93 9/10/2024
2.1.50 96 9/10/2024
2.1.49 82 9/10/2024
2.1.48 75 9/10/2024
2.1.47 81 9/10/2024
2.1.46 93 9/10/2024
2.1.45 93 9/10/2024
2.1.44 96 9/10/2024
2.1.43 74 9/10/2024
2.1.42 72 9/10/2024
2.1.41 97 9/10/2024
2.1.40 70 9/10/2024
2.1.39 94 9/10/2024
2.1.38 86 9/10/2024
2.1.37 88 9/10/2024
2.1.36 89 9/10/2024
2.1.35 97 9/10/2024
2.1.34 96 9/10/2024
2.1.33 91 9/10/2024
2.1.30 87 9/10/2024
2.1.29 89 9/10/2024
2.1.28 90 9/10/2024
2.1.27 77 9/10/2024
2.1.25 94 9/9/2024
2.1.24 87 9/9/2024
2.1.23 72 9/9/2024
2.1.22 71 9/9/2024
2.1.21 86 9/9/2024
2.1.20 73 9/9/2024
2.1.19 67 9/9/2024
2.1.18 73 9/9/2024
2.1.16 71 9/9/2024
2.1.15 76 9/9/2024
2.1.13 95 9/9/2024
2.1.12 79 9/9/2024
2.1.11 98 9/9/2024
2.1.10 80 9/9/2024
2.1.9 74 9/9/2024
2.1.8 101 9/9/2024
2.1.7 94 9/9/2024
2.1.6 84 9/8/2024