Skip to main content
A newer version of this page is available.
All docs
V18.2

VerticalGridSettings.RecordValidating Property

Enables you to specify whether column data is valid, and whether the column can be updated.

Namespace: DevExpress.Web.Mvc

Assembly: DevExpress.Web.Mvc5.v18.2.dll

Declaration

public ASPxVerticalGridDataValidationEventHandler RecordValidating { get; set; }

Property Value

Type Description
ASPxVerticalGridDataValidationEventHandler

An ASPxVerticalGridDataValidationEventHandler delegate method allowing you to implement custom processing.

Remarks

Implement a ASPxVerticalGridDataValidationEventHandler delegate method and assign it to the RecordValidating property. For more implementation details, refer to the ASPxVerticalGridDataValidationEventHandler delegate description.

Note

Use the RecordValidating property to provide custom error text. The actual validation logic should be implemented in the code of the controller as described in the Validation article.

See Also