Skip to main content

DxTagBox<TData, TValue>.ValueFieldName Property

Specifies the data source field that populates values for the TagBox’s items.

Namespace: DevExpress.Blazor

Assembly: DevExpress.Blazor.v23.2.dll

NuGet Package: DevExpress.Blazor

Declaration

[Parameter]
public string ValueFieldName { get; set; }

Property Value

Type Description
String

The field name.

Remarks

If a TagBox is bound to a field that stores IDs or other non-user-friendly values, you may want to use lookup functionality. You can replace IDs with human-readable strings and let users select values from a lookup list.

For example, the following image shows how lookup functionality is used for the Employee.ID field of the Employees data source object. The component finds the IDs from a different collection and replaces them with the corresponding DisplayText values.

TagBox Value Field Scheme

Use the ValueFieldName property to specify a data source field to obtain item values from. To access the editor’s selected values, use the Values property.

Note

If the ValueFieldName property is not specified and TValue and TData are different, the TagBox component searches for a Value field in the data source. If the field is found and its type matches TValue, the component uses this field as a value field.

<DxTagBox Data="@Employees.DataSource"
          ValueFieldName="@nameof(Employee.ID)"
          TextFieldName="@nameof(Employee.DisplayText)"
          @bind-Values="Values">
</DxTagBox>

@code {
    IEnumerable<int> Values { get; set; } = Employees.DataSource.Take(2).Select(t => t.ID);
}

Run Demo: TagBox - Item Values

See Also