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

PopupWindow Class

Represents an individual popup window.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v19.2.dll

Declaration

public class PopupWindow :
    ContentControlCollectionItem

Remarks

The PopupWindow class contains settings which define an individual popup window within the ASPxPopupControl. A popup window is typically used to display any subsidiary information about an element (or several elements) specified by the PopupWindow.PopupElementID property, depending upon a specific client action set via the ASPxPopupControl.PopupAction.

A popup window may consist of the following:

All popup windows are stored in a popup control’s ASPxPopupControl.Windows collection. Individual popup windows can be accessed using index notation, by their names, or their content texts.

Note that a common appearance and behavior can be specified for all popup windows by using a popup control’s properties. In order to define custom settings for individual windows, use the window level’s properties. Some specific settings such as a content text (PopupWindow.Text) and an associated elements (PopupWindow.PopupElementID) cannot be defined at the popup control level and should be assigned for each popup window individually.

Note that the PopupWindow class has a client-side equivalent - an object of the ASPxClientPopupWindow type.

See Also