Skip to main content
Tab

ASPxEdit.ValidateEditorsInContainer(Control, String, Boolean) Method

Performs validation of the editors which are located within the specified container and belong to a specific validation group, dependent on the visibility state specified.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v23.2.dll

NuGet Package: DevExpress.Web

Declaration

public static bool ValidateEditorsInContainer(
    Control container,
    string validationGroup,
    bool validateInvisibleEditors
)

Parameters

Name Type Description
container Control

A Control object that represents the container of the editors to be validated.

validationGroup String

A string value that specifies the validation group’s name.

validateInvisibleEditors Boolean

true to validate both visible and invisible editors that belong to the specified container and group; false to validate only visible editors.

Returns

Type Description
Boolean

true if the specified editors pass validation; otherwise, false.

Remarks

Note

The ValidateEditorsInContainer method validates both initial and changed editor values.

See Also