Skip to main content
Tab

ASPxEdit.AreEditorsValid(Control) Method

Verifies whether visible editors with the specified settings are valid.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v23.2.dll

NuGet Package: DevExpress.Web

Declaration

public static bool AreEditorsValid(
    Control container
)

Parameters

Name Type Description
container Control

A Control object that specifies the container.

Returns

Type Description
Boolean

true if visible editors are valid; otherwise, false.

Remarks

Note

The AreEditorsValid method does not validate editor data, it only checks the validation state of editors.

Example

protected void btnSubmit_Click(object sender, EventArgs e)
{
    if (ASPxEdit.AreEditorsValid(FormPanel)) {
        // TODO: Write data to database
        FormPanel.Visible = false;
        SuccessPanel.Visible = true;
        btnAgain.Focus();

        // Intentionally pauses server-side processing, to demonstrate the Loading Panel functionality.
        Thread.Sleep(2000);
    }
}
See Also