blazor-devexpress-dot-blazor-dot-dxtagbox-2-e95ddb8f.md
Provides access to the TagBox’s selected value/item collection.
Namespace : DevExpress.Blazor
Assembly : DevExpress.Blazor.v25.2.dll
NuGet Package : DevExpress.Blazor
[Parameter]
public IEnumerable<TValue> Values { get; set; }
| Type | Description |
|---|---|
| IEnumerable<TValue> |
The TagBox’s values/items.
|
Use the Values property to access to the TagBox’s list of item values/items from a bound data source. To respond to selection changes, handle the ValuesChanged event.
Note
The Values collection does not include custom tags. To access to the TagBox’s custom tags, use the Tags collection.
The Values property can return the following objects:
Values property includes the selected item’s values.Values property includes selected items.<DxTagBox Data="@Staff.DataSource"
TextFieldName="@nameof(Person.Text)"
@bind-Values="@SelectedStaff">
</DxTagBox>
@code {
IEnumerable<Person> SelectedStaff { get; set; } = new List<Person>() { Staff.DataSource[0] };
}
The following code snippet demonstrates a sample implementation of the Person class.
public class Person {
public int Id { get; set; }
public string FirstName { get; set; }
public string LastName { get; set; }
public Department Department { get; set; }
public string Text => $"{FirstName} {LastName} ({Department} Dept.)";
}
The TagBox Values property is strongly typed. You can use two-way binding only with IEnumerable collections. If you want to store data in other collections, for example, IList, use one-way binding:
<DxTagBox Data="@Cities" Values="@Values" />
@code {
IList<string> Cities = new List<string>() {
"London",
"Berlin",
"Paris",
};
IList<string> Values { get; set; } = new List<string>() {
"Paris",
};
}
The selected items are not shown in the editor’s drop-down list. To disable this behavior, set the HideSelectedItems property to false.
Run Demo: TagBox - Show Selected Items
DevExpress.Blazor.ITagBox<TData, TValue>.Values
See Also