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