aspnet-11167-components-data-editors-common-concepts-validation.md
The ASPxEditors Suite allows you to validate data on both the client and server sides. You can implement different validation scenarios without using additional validation controls.
You can force editor validation in different ways (see the image below).
Validation on Leave. When the ValidationSettings.ValidateOnLeave property is set to true (the default value), editor value changes trigger validation.
Validation Methods. You can call the following methods to force validation.
Other Editors. Certain editors can force editor validation if their CausesValidation property is set to true.
If ASPxButton’s ASPxButton.CausesValidation property is set to true (the default value), then the button click forces editor validation. You can use the button’s properties for the following validation cases:
The editor validates the entire group (ValidationSettings.ValidationGroup) if the ValidationSettings.CausesValidation and ASPxEdit.AutoPostBack property values are true.
See Also