GridOptionsBehavior.AllowValidationErrors Property
Gets or sets whether validation errors (icon and description) are allowed to be displayed when a cell or entire row is not valid.
Namespace: DevExpress.XtraGrid.Views.Grid
Assembly: DevExpress.XtraGrid.v24.2.dll
NuGet Packages: DevExpress.Win.Grid, DevExpress.Win.Navigation
#Declaration
#Property Value
Type | Default | Description |
---|---|---|
Boolean | true | true if validation errors are displayed; otherwise, false. |
#Property Paths
You can access this nested property as listed below:
Object Type | Path to Allow |
---|---|
Grid |
|
#Remarks
When a particular row loses focus, the ColumnView.ValidateRow event fires, allowing you to validate the row. In the event handler, you can call the ColumnView.SetColumnError method to specify a validation error (icon and description) for the row being validated, or for a particular cell in the row. By default, these errors are displayed if the validation fails (the Valid event argument is set to false). Set the AllowValidationErrors property to false to suppress displaying validation errors. Note that the AllowValidationErrors property only affects the error display, but not the validation itself.