BPT

Multi Select

The BptMultiSelect component provides a multi-selection dropdown with removable chips, search filtering, keyboard navigation, and optional selection limits.

Multi Select Parameters

Selected (0): (none)

Current Configuration
📋 [+]
<BptMultiSelect @bind-Value="selectedValues"
                Items="countries"
                HideScrollbar="true"
                OnSelectionChanged="HandleSelectionChanged" />

@code {
    private List<string> selectedValues = new();

    private List<string> countries = new()
    {
        "Norway", "Sweden", "Denmark", "Finland", "Iceland"
    };

    private void HandleSelectionChanged(List<string> values)
    {
        Console.WriteLine($"Selected: {string.Join(", ", values)}");
    }
}
An unhandled error has occurred. Reload 🗙

Rejoining the server...

Rejoin failed... trying again in seconds.

Failed to rejoin.
Please retry or reload the page.

The session has been paused by the server.

Failed to resume the session.
Please reload the page.