Blazorise Select component

Selects allow you to choose one or more items from a dropdown menu.

<Select> components are used for collecting user provided information from a list of options.

Structure

  • <Select> The main input.

    • <SelectItem> The select item, used for defining the options.

    • <SelectGroup> The select group, used for grouping items.

Select and SelectItem are generic components and they support all of the basic value types line int, string, enum, etc. Nullable types are also supported. Since they are generic component they also come with some special rules that must be followed:

  • Value type must be known. When using member variable on bind-* or Value attributes, the value type will be recognized automatically. Otherwise you must use TValue to define it eg (TValue=”int”).
  • Value type must be the same in both Select and SelectItem.
  • String values must be defined with special syntax eg. @("hello"), see #7785

Examples

Basic

<Select TValue="int">
    <SelectItem Value="1">One</SelectItem>
    <SelectItem Value="2">Two</SelectItem>
    <SelectItem Value="3">Three</SelectItem>
    <SelectItem Value="4">Four</SelectItem>
</Select>

Multiple

By changing the enumerable type on the TValue, and by enabling the Multiple parameter, you will be able to select more than one option.
<Select TValue="int[]" Multiple>
    <SelectItem Value="1">One</SelectItem>
    <SelectItem Value="2">Two</SelectItem>
    <SelectItem Value="3">Three</SelectItem>
    <SelectItem Value="4">Four</SelectItem>
</Select>

Groups

You can also group items into categories for better user experience.
<Select TValue="int">
    <SelectGroup Label="Group 1">
        <SelectItem Value="1">One</SelectItem>
        <SelectItem Value="2">Two</SelectItem>
    </SelectGroup>
    <SelectGroup Label="Group 2">
        <SelectItem Value="3">Three</SelectItem>
        <SelectItem Value="4">Four</SelectItem>
    </SelectGroup>
</Select>

Binding

The process is basically the same for the single and for multiple select.

Two-way binding

By using bind-* attribute the selected item value will be automatically assigned to the member variable.
<Select @bind-Value="@selectedValue">
    <SelectItem Value="1">One</SelectItem>
    <SelectItem Value="2">Two</SelectItem>
    <SelectItem Value="3">Three</SelectItem>
    <SelectItem Value="4">Four</SelectItem>
</Select>
@code{
    int selectedValue;
}

Manual event binding

When using the event ValueChanged, you also must define the Value attribute.
<Select TValue="int" Value="@selectedValue" ValueChanged="@OnSelectedValueChanged">
    <SelectItem Value="1">One</SelectItem>
    <SelectItem Value="2">Two</SelectItem>
    <SelectItem Value="3">Three</SelectItem>
    <SelectItem Value="4">Four</SelectItem>
</Select>
@code{
    int selectedValue;

    Task OnSelectedValueChanged( int value )
    {
        selectedValue = value;
        Console.WriteLine( selectedValue );

        return Task.CompletedTask;
    }
}

Best Practices

Default Value

When applicable, set the most common choice as the default value.

Not a Menu

Select is an input field component, not a generic menu component. Use Dropdown to create overlays for actions.

API

See the API reference for the parameters, events, methods, and related types available to the components covered on this page.

On this page