AutocompleteBuilder.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 AutocompleteBuilder DisplayValue(
string value
)
Parameters
| Name | Type | Description |
|---|---|---|
| value | String | The option value. |
Returns
| Type | Description |
|---|---|
| AutocompleteBuilder | A reference to this instance after the method is called. |
Remarks
Use the following notation to set the option’s value:
@(Html.DevExtreme().Autocomplete()
.DisplayValue("My value")
)
See Also