Skip to main content

SelectBoxBuilder.ValidationStatus(ValidationStatus) Method

Indicates or specifies the current validation status. Mirrors the client-side validationStatus option.

Namespace: DevExtreme.AspNet.Mvc.Builders

Assembly: DevExtreme.AspNet.Core.dll

Declaration

public SelectBoxBuilder ValidationStatus(
    ValidationStatus value
)

Parameters

Name Type Description
value ValidationStatus

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()
    .ValidationStatus(ValidationStatus.Invalid)
)
See Also