New to Telerik UI for BlazorStart a free 30-day trial

MultiSelect Custom Values

Updated on Apr 28, 2025

The MultiSelect component lets users type their own values that are not part of the options predefined by the developer.

The text entered by the user can still go into the collection that MultiSelect component is bound to through two-way binding.

To enable custom user input, set the AllowCustom parameter to true. When the user types a custom value, it appears as the first item in the list with the label: Use "typed value". The user must select (click) the value, to actually add it the collection of values that MultiSelect is bound to. Refer to the example below to see the feature in action.

When custom values are enabled, the TextField, ValueField and the Value must be of type string. Otherwise an exception will be thrown. Strings are required because the user input can take any form and may not be parsable to other types (such as numbers or GUID).

When custom input is allowed, the ValueChanged event fires on every keystroke, instead of when an item is selected. This happens because the MultiSelect component behaves like a text input.

Allow custom user input in the MultiSelect component

<TelerikMultiSelect Data="@Cities"
                    @bind-Value="@SelectedCities"
                    TextField="@nameof(City.CityName)" 
                    ValueField="@nameof(City.CityName)"
                    AllowCustom="true"
                    Placeholder="Select a city for the list or type a custom one"
                    Width="400px">
</TelerikMultiSelect>

@code {
    private List<City> Cities { get; set; } = new();
    private List<string> SelectedCities { get; set; } = new();

    protected override void OnInitialized()
    {
        Cities = new List<City>
        {
            new City { CityId = 1, CityName = "New York"},
            new City { CityId = 2, CityName = "London"},
            new City { CityId = 3, CityName = "Tokyo"},
            new City { CityId = 4, CityName = "Paris"},
            new City { CityId = 5, CityName = "Sydney"}
        };

        base.OnInitialized();
    }

    public class City
    {
        public int CityId { get; set; }
        public string CityName { get; set; } = string.Empty;
    }
}

Limitations

See Also

In this article
LimitationsSee Also
Not finding the help you need?
Contact Support