Soenneker.Blazor.TomSelect 2.1.307

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.307
NuGet\Install-Package Soenneker.Blazor.TomSelect -Version 2.1.307
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.307" />
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.307
#r "nuget: Soenneker.Blazor.TomSelect, 2.1.307"
#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.307

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

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