aspnet-devexpress-dot-web-dot-data-dot-aspxdatavalidationeventargs.md
Gets a collection of editor errors.
Namespace : DevExpress.Web.Data
Assembly : DevExpress.Web.v25.2.dll
NuGet Package : DevExpress.Web
public Dictionary<GridViewColumn, string> EditorPropertiesErrors { get; }
Public ReadOnly Property EditorPropertiesErrors As Dictionary(Of GridViewColumn, String)
| Type | Description |
|---|---|
| Dictionary<GridViewColumn, String> |
The collection of errors.
|
The grid uses validation rules specified in the properties of column editors and stores discovered validation errors in the EditorPropertiesErrors property that provides a collection of keys and values. Keys are columns. Values are validation error descriptions.
protected void ASPxGridView1_RowValidating(object sender, DevExpress.Web.Data.ASPxDataValidationEventArgs e) {
ASPxGridView gridView = sender as ASPxGridView;
e.EditorPropertiesErrors.Remove(gridView.Columns["OrderTime"]);
}
You can set the UseEditorPropertiesInDataControlValidation property to false to ignore column editors’ validation settings.
Global.asax:
void Application_Start(object sender, EventArgs e) {
ASPxWebControl.BackwardCompatibility.UseEditorPropertiesInDataControlValidation = false;
}
See Also
ASPxDataValidationEventArgs Class