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

ASPxPopupControl.WindowFooterContentTemplate Property

Gets or sets a common template used to display the footer‘s content of all popup windows from the ASPxPopupControl.Windows collection.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v19.2.dll

Declaration

[DefaultValue(null)]
public ITemplate WindowFooterContentTemplate { get; set; }

Property Value

Type Default Description
ITemplate *null*

An object that supports the System.Web.UI.ITemplate interface and contains a template used to display the content of a window’s footer.

Remarks

Use the WindowFooterContentTemplate property to specify a common footer template for all popup windows from the ASPxPopupControl.Windows collection. The template defined via this property replaces the content of a window’s footer; in particular, the image and text displayed with the footer (the size grip element remains). To replace the full footer area, use the ASPxPopupControl.WindowFooterTemplate property. The WindowFooterContentTemplate property’s value can be overridden by the PopupWindow.FooterContentTemplate property of individual windows.

Note that any style settings defined for the footer via specific properties (such as the ASPxPopupControl.FooterStyle or PopupWindow.FooterStyle) are still in effect for a window’s footer whose content is specified through the WindowFooterContentTemplate property.

Note

If the ASPxPopupControl.Windows collection is empty, the WindowFooterContentTemplate property is not in effect and the default popup window‘s footer template can be defined by the ASPxPopupControlBase.FooterContentTemplate property.

Note

Once a template defined via the WindowFooterContentTemplate property is created within a tab control, it is instantiated within a container object of the PopupControlTemplateContainer type. This container object exposes a set of specific properties to which the template’s child controls can be bound.

See Also