Skip to main content
A newer version of this page is available. .
Tab

ASPxEdit.ClearEditorsInContainer(Control) Method

Assigns a null value to all visible editors that are located within the specified container object.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v18.2.dll

Declaration

public static void ClearEditorsInContainer(
    Control container
)

Parameters

Name Type Description
container Control

A Control object that specifies the container of editors.

Remarks

This method can be used to reset the specified visible editors to null values while performing validation.

Example

protected void btnAgain_Click(object sender, EventArgs e)
{
    FormPanel.Visible = true;
    SuccessPanel.Visible = false;
    ASPxEdit.ClearEditorsInContainer(FormPanel);
}
See Also