Skip to main content
All docs
V19.2

GridViewSettings.RowValidating Property

Enables you to specify whether row data is valid.

Namespace: DevExpress.Web.Mvc

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

Declaration

public ASPxDataValidationEventHandler RowValidating { get; set; }

Property Value

Type Description
ASPxDataValidationEventHandler

An ASPxDataValidationEventHandler delegate method allowing you to implement custom processing.

Remarks

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

Note

Use the RowValidating 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