ASPxCardViewDataValidationEventArgs.EditorPropertiesErrors Property
Gets a collection of editor errors.
Namespace: DevExpress.Web
Assembly: DevExpress.Web.v24.1.dll
NuGet Package: DevExpress.Web
Declaration
Property Value
Type | Description |
---|---|
Dictionary<CardViewColumn, String> | The collection of errors. |
Remarks
The ASPxCardView 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 ASPxCardView1_RecordValidating(object sender, DevExpress.Web.ASPxCardViewDataValidationEventArgs e) {
ASPxCardView cardView = sender as ASPxCardView;
e.EditorPropertiesErrors.Remove(cardView.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