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

PopupWindow.Enabled Property

Gets or sets the current popup window’s availability on the client side.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v19.2.dll

Declaration

[DefaultValue(true)]
public bool Enabled { get; set; }

Property Value

Type Default Description
Boolean **true**

true if the current popup window is available and can be invoked on the client side; false if the window is disabled.

Remarks

When this property is set to false, the popup window is not rendered into the page and so can’t be manipulated on the client side.

Note

The false value assigned to the Enabled property of a popup window overrides the true value set for the popup control’s ASPxWebControl.Enabled property which specifies the availability of all popup windows from the ASPxPopupControl.Windows collection. If the ASPxWebControl.Enabled property is set to false, all popup windows are disabled regardless of an individual popup window’s Enabled property setting.

See Also