Skip to main content

SelectBoxBuilder.DisplayValue(String) Method

OBSOLETE

The displayValue option is read-only. Calling this method does not affect the widget.

Returns the value currently displayed by the UI component. Mirrors the client-side displayValue option.

Namespace: DevExtreme.AspNet.Mvc.Builders

Assembly: DevExtreme.AspNet.Core.dll

Declaration

[Obsolete("The displayValue option is read-only. Calling this method does not affect the widget.")]
public SelectBoxBuilder DisplayValue(
    string value
)

Parameters

Name Type Description
value String

The option value.

Returns

Type Description
SelectBoxBuilder

A reference to this instance after the method is called.

Remarks

Use the following notation to set the option’s value:

@(Html.DevExtreme().SelectBox()
    .DisplayValue("My value")
)
See Also