Soenneker.Blazor.TomSelect 2.1.366

The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org. Prefix Reserved
dotnet add package Soenneker.Blazor.TomSelect --version 2.1.366
NuGet\Install-Package Soenneker.Blazor.TomSelect -Version 2.1.366
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.TomSelect" Version="2.1.366" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Soenneker.Blazor.TomSelect --version 2.1.366
#r "nuget: Soenneker.Blazor.TomSelect, 2.1.366"
#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.TomSelect as a Cake Addin
#addin nuget:?package=Soenneker.Blazor.TomSelect&version=2.1.366

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

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.TomSelect

A Blazor interop library for the select user control library, Tom Select

This library simplifies the integration of Tom Select into Blazor applications, providing access to options, methods, plugins, and events. A demo project showcasing common usages is included.

Diligence was taken to align the Blazor API with JS. Refer to the Tom Select documentation for details.

Installation

dotnet add package Soenneker.Blazor.TomSelect

1. Add the following to your _Imports.razor file

@using Soenneker.Blazor.TomSelect

2. Add the following to your Startup.cs file

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

3. Add the stylesheet to your wwwroot/index.html file

<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/tom-select/dist/css/tom-select.bootstrap5.min.css">

4. Add the scripts to your wwwroot/index.html file

<script src="https://cdn.jsdelivr.net/npm/tom-select/dist/js/tom-select.complete.min.js"></script>
<script src="_content/Soenneker.Blazor.TomSelect/tomselectinterop.js"></script>

Usage

<TomSelect
    TItem="Country" TType="string" OnItemAdd="OnItemAdd"
    Data="@_countries"
    TextField="@(item => item.Name)"
    ValueField="@(item => item.Id.ToString())" @ref="_tomSelect" Items="_selectedCountries">
</TomSelect>

@code{
    private TomSelect<Country, string> _tomSelect = default!;

    private List<Country>? _selectedCountries;
    private List<Country>? _countries;

    protected override async Task OnInitializedAsync()
    {
        _countries = await Http.GetFromJsonAsync<List<Country>>("sample-data/countries.json");
    }

    private void OnItemAdd((string str, TomSelectOption obj) result)
    {
        Logger.LogInformation("OnItemAdd fired: Value: {value}", str);
    }

    private void LogSelectedItems()
    {
        foreach (Country item in _tomSelect.Items)
        {
            Logger.LogInformation("Selected item: {0}", item.Name);
        }
    }
}

⚠️ While a lot of the Tom Select library has been implemented, there are features not yet supported. If you need assistance or want to request a new feature, please open an issue or submit a pull request.

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.366 7 5/3/2024
2.1.365 38 5/1/2024
2.1.364 33 5/1/2024
2.1.363 74 4/30/2024
2.1.362 80 4/30/2024
2.1.361 89 4/30/2024
2.1.360 81 4/30/2024
2.1.359 81 4/30/2024
2.1.358 80 4/30/2024
2.1.357 83 4/30/2024
2.1.356 83 4/30/2024
2.1.355 77 4/30/2024
2.1.354 79 4/30/2024
2.1.353 84 4/30/2024
2.1.352 78 4/30/2024
2.1.351 76 4/30/2024
2.1.350 78 4/30/2024
2.1.349 77 4/30/2024
2.1.348 86 4/30/2024
2.1.347 74 4/30/2024
2.1.346 87 4/29/2024
2.1.345 72 4/29/2024
2.1.344 79 4/29/2024
2.1.343 72 4/29/2024
2.1.342 73 4/29/2024
2.1.341 75 4/29/2024
2.1.340 78 4/29/2024
2.1.339 79 4/29/2024
2.1.338 72 4/29/2024
2.1.337 78 4/29/2024
2.1.336 73 4/29/2024
2.1.335 77 4/29/2024
2.1.334 81 4/29/2024
2.1.333 81 4/28/2024
2.1.332 75 4/28/2024
2.1.331 71 4/28/2024
2.1.330 73 4/28/2024
2.1.329 79 4/28/2024
2.1.328 76 4/28/2024
2.1.327 86 4/28/2024
2.1.326 70 4/28/2024
2.1.325 70 4/28/2024
2.1.324 72 4/28/2024
2.1.323 81 4/28/2024
2.1.322 76 4/28/2024
2.1.321 72 4/28/2024
2.1.320 84 4/28/2024
2.1.319 80 4/28/2024
2.1.318 74 4/28/2024
2.1.317 71 4/28/2024
2.1.316 69 4/28/2024
2.1.315 77 4/28/2024
2.1.314 84 4/28/2024
2.1.313 71 4/28/2024
2.1.312 81 4/28/2024
2.1.311 82 4/28/2024
2.1.310 85 4/28/2024
2.1.309 65 4/28/2024
2.1.308 68 4/28/2024
2.1.307 79 4/27/2024
2.1.306 69 4/27/2024
2.1.305 73 4/27/2024
2.1.304 84 4/27/2024
2.1.303 81 4/22/2024
2.1.302 90 4/20/2024
2.1.301 81 4/20/2024
2.1.300 77 4/20/2024
2.1.299 80 4/20/2024
2.1.298 73 4/20/2024
2.1.297 77 4/20/2024
2.1.296 71 4/20/2024
2.1.295 75 4/20/2024
2.1.294 74 4/20/2024
2.1.293 78 4/19/2024
2.1.292 73 4/19/2024
2.1.291 75 4/19/2024
2.1.290 69 4/19/2024
2.1.289 73 4/19/2024
2.1.288 68 4/19/2024
2.1.287 64 4/19/2024
2.1.286 74 4/19/2024
2.1.285 70 4/19/2024
2.1.284 78 4/19/2024
2.1.283 71 4/19/2024
2.1.282 69 4/19/2024
2.1.281 75 4/19/2024
2.1.280 72 4/19/2024
2.1.279 75 4/19/2024
2.1.278 73 4/19/2024
2.1.277 68 4/19/2024
2.1.276 72 4/19/2024
2.1.275 76 4/18/2024
2.1.274 64 4/18/2024
2.1.273 104 4/15/2024
2.1.272 85 4/13/2024
2.1.271 75 4/13/2024
2.1.270 73 4/13/2024
2.1.269 64 4/13/2024
2.1.268 67 4/13/2024
2.1.267 69 4/13/2024
2.1.266 76 4/13/2024
2.1.265 74 4/13/2024
2.1.264 68 4/13/2024
2.1.263 73 4/13/2024
2.1.262 72 4/13/2024
2.1.261 74 4/13/2024
2.1.260 68 4/13/2024
2.1.259 68 4/13/2024
2.1.258 73 4/12/2024
2.1.257 55 4/12/2024
2.1.256 65 4/12/2024
2.1.255 70 4/12/2024
2.1.254 67 4/12/2024
2.1.253 64 4/12/2024
2.1.252 69 4/12/2024
2.1.251 66 4/12/2024
2.1.250 61 4/12/2024
2.1.249 73 4/12/2024
2.1.248 61 4/12/2024
2.1.247 65 4/12/2024
2.1.246 62 4/12/2024
2.1.245 71 4/12/2024
2.1.244 69 4/12/2024
2.1.243 73 4/12/2024
2.1.242 73 4/12/2024
2.1.241 70 4/12/2024
2.1.240 72 4/12/2024
2.1.239 79 4/12/2024
2.1.238 72 4/12/2024
2.1.237 73 4/12/2024
2.1.236 75 4/12/2024
2.1.235 76 4/12/2024
2.1.234 73 4/12/2024
2.1.233 67 4/12/2024
2.1.232 75 4/12/2024
2.1.231 78 4/11/2024
2.1.230 72 4/11/2024
2.1.229 75 4/10/2024
2.1.228 74 4/10/2024
2.1.227 69 4/10/2024
2.1.226 70 4/10/2024
2.1.225 67 4/10/2024
2.1.224 64 4/10/2024
2.1.223 69 4/10/2024
2.1.222 55 4/10/2024
2.1.221 57 4/10/2024
2.1.220 64 4/10/2024
2.1.219 70 4/10/2024
2.1.218 63 4/10/2024
2.1.217 69 4/10/2024
2.1.216 65 4/10/2024
2.1.215 63 4/10/2024
2.1.214 66 4/10/2024
2.1.213 78 4/9/2024
2.1.212 74 4/9/2024
2.1.211 77 4/9/2024
2.1.210 72 4/9/2024
2.1.209 88 4/8/2024
2.1.208 119 4/5/2024
2.1.207 69 4/4/2024
2.1.206 82 4/4/2024
2.1.205 74 4/4/2024
2.1.204 94 4/3/2024
2.1.203 80 4/3/2024
2.1.202 75 4/3/2024
2.1.201 73 4/3/2024
2.1.200 79 4/2/2024
2.1.199 70 4/2/2024
2.1.198 86 4/2/2024
2.1.197 83 4/2/2024
2.1.196 57 4/2/2024
2.1.195 82 4/2/2024
2.1.194 78 4/2/2024
2.1.193 85 4/2/2024
2.1.192 75 4/2/2024
2.1.191 62 4/2/2024
2.1.190 68 4/2/2024
2.1.189 76 4/1/2024
2.1.188 66 4/1/2024
2.1.187 73 4/1/2024
2.1.186 71 4/1/2024
2.1.185 68 4/1/2024
2.1.184 90 3/30/2024
2.1.183 79 3/30/2024
2.1.182 89 3/30/2024
2.1.181 76 3/30/2024
2.1.180 77 3/29/2024
2.1.179 77 3/29/2024
2.1.178 81 3/29/2024
2.1.177 72 3/29/2024
2.1.176 65 3/27/2024
2.1.175 80 3/26/2024
2.1.174 70 3/26/2024
2.1.173 66 3/25/2024
2.1.172 70 3/25/2024
2.1.171 60 3/25/2024
2.1.170 62 3/25/2024
2.1.169 72 3/25/2024
2.1.168 63 3/25/2024
2.1.167 79 3/25/2024
2.1.166 81 3/25/2024
2.1.165 72 3/25/2024
2.1.164 57 3/25/2024
2.1.163 75 3/25/2024
2.1.162 68 3/25/2024
2.1.161 82 3/24/2024
2.1.160 66 3/23/2024
2.1.159 94 3/21/2024
2.1.158 67 3/21/2024
2.1.157 84 3/21/2024
2.1.156 83 3/21/2024
2.1.155 77 3/21/2024
2.1.154 76 3/21/2024
2.1.153 78 3/21/2024
2.1.152 80 3/21/2024
2.1.151 83 3/21/2024
2.1.150 81 3/20/2024
2.1.149 68 3/20/2024
2.1.148 93 3/20/2024
2.1.147 92 3/20/2024
2.1.146 86 3/20/2024
2.1.145 94 3/20/2024
2.1.144 96 3/20/2024
2.1.143 90 3/20/2024
2.1.142 92 3/20/2024
2.1.141 75 3/19/2024
2.1.140 76 3/19/2024
2.1.139 94 3/19/2024
2.1.138 88 3/19/2024
2.1.137 82 3/19/2024
2.1.136 84 3/19/2024
2.1.135 87 3/19/2024
2.1.134 77 3/19/2024
2.1.133 95 3/19/2024
2.1.132 89 3/19/2024
2.1.131 96 3/19/2024
2.1.130 86 3/19/2024
2.1.129 87 3/19/2024
2.1.128 99 3/19/2024
2.1.127 73 3/19/2024
2.1.126 91 3/19/2024
2.1.125 90 3/18/2024
2.1.124 91 3/18/2024
2.1.123 80 3/18/2024
2.1.122 121 3/18/2024
2.1.121 98 3/16/2024
2.1.120 86 3/16/2024
2.1.119 98 3/16/2024
2.1.118 95 3/16/2024
2.1.117 90 3/16/2024
2.1.116 96 3/16/2024
2.1.115 95 3/16/2024
2.1.114 87 3/16/2024
2.1.113 91 3/16/2024
2.1.112 80 3/15/2024
2.1.111 81 3/15/2024
2.1.110 99 3/15/2024
2.1.109 89 3/15/2024
2.1.108 93 3/14/2024
2.1.107 93 3/14/2024
2.1.106 94 3/14/2024
2.1.105 69 3/14/2024
2.1.104 91 3/14/2024
2.1.103 105 3/13/2024
2.1.102 96 3/13/2024
2.1.101 94 3/13/2024
2.1.100 90 3/13/2024
2.1.99 91 3/13/2024
2.1.98 96 3/13/2024
2.1.97 94 3/13/2024
2.1.96 83 3/13/2024
2.1.95 88 3/13/2024
2.1.94 79 3/13/2024
2.1.93 104 3/13/2024
2.1.92 93 3/13/2024
2.1.91 101 3/13/2024
2.1.90 100 3/13/2024
2.1.89 95 3/13/2024
2.1.88 94 3/13/2024
2.1.87 84 3/13/2024
2.1.86 100 3/13/2024
2.1.85 80 3/13/2024
2.1.84 81 3/13/2024
2.1.83 98 3/13/2024
2.1.82 88 3/13/2024
2.1.81 87 3/13/2024
2.1.80 93 3/12/2024
2.1.79 95 3/12/2024
2.1.78 102 3/12/2024
2.1.77 86 3/12/2024
2.1.76 82 3/12/2024
2.1.75 86 3/12/2024
2.1.74 75 3/12/2024
2.1.73 93 3/12/2024
2.1.72 94 3/12/2024
2.1.71 78 3/12/2024
2.1.70 91 3/12/2024
2.1.69 73 3/12/2024
2.1.68 79 3/12/2024
2.1.67 83 3/12/2024
2.1.66 95 3/12/2024
2.1.65 95 3/11/2024
2.1.64 94 3/11/2024
2.1.63 116 3/11/2024
2.1.62 76 3/11/2024
2.1.61 104 3/11/2024
2.1.60 77 3/11/2024
2.1.59 88 3/11/2024
2.1.58 99 3/11/2024
2.1.57 81 3/11/2024
2.1.56 95 3/11/2024
2.1.55 87 3/11/2024
2.1.54 89 3/11/2024
2.1.53 97 3/11/2024
2.1.52 101 3/10/2024
2.1.51 92 3/10/2024
2.1.50 104 3/10/2024
2.1.49 100 3/10/2024
2.1.48 97 3/10/2024
2.1.47 83 3/10/2024
2.1.46 93 3/10/2024
2.1.45 91 3/10/2024
2.1.44 98 3/10/2024
2.1.43 93 3/10/2024
2.1.42 84 3/10/2024
2.1.41 96 3/9/2024
2.1.40 92 3/9/2024
2.1.39 94 3/9/2024
2.1.38 103 3/9/2024
2.1.37 107 3/9/2024
2.1.36 83 3/9/2024
2.1.35 96 3/8/2024
2.1.34 91 3/8/2024
2.1.33 94 3/8/2024
2.1.32 100 3/8/2024
2.1.31 96 3/8/2024
2.1.30 94 3/8/2024
2.1.29 86 3/8/2024
2.1.28 98 3/8/2024
2.1.27 85 3/8/2024
2.1.26 104 3/8/2024
2.1.25 82 3/8/2024
2.1.24 94 3/8/2024
2.1.23 86 3/8/2024
2.1.22 78 3/8/2024
2.1.21 107 3/8/2024
2.1.20 112 3/7/2024
2.1.19 97 3/7/2024
2.1.18 84 3/7/2024
2.1.17 91 3/6/2024
2.1.16 83 3/6/2024
2.1.15 98 3/6/2024
2.1.14 97 3/6/2024
2.1.13 99 3/6/2024
2.1.12 93 3/6/2024
2.1.11 96 3/6/2024
2.1.10 92 3/6/2024
2.1.9 98 3/6/2024
2.1.8 92 3/6/2024
2.1.7 88 3/6/2024
2.1.6 103 3/6/2024
2.1.5 102 3/6/2024
2.1.4 88 3/5/2024
2.1.3 99 3/5/2024