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

PopupWindow.FooterTemplate Property

Gets or sets a template used for displaying the window’s footer.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v18.2.dll

Declaration

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

Property Value

Type Default Description
ITemplate *null*

An object supporting the System.Web.UI.ITemplate interface which contains a template to display the window’s footer.

Remarks

Use the FooterTemplate property to control the current popup window’s footer. The template defined using this property replaces the window footer - in particular, the image, text , and the size grip element displayed with the footer.

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

Note

The value assigned to the FooterTemplate property of a popup window overrides the value set for the popup control’s ASPxPopupControlBase.FooterTemplate property (if any) which specifies a common footer template for all popup windows from the ASPxPopupControl.Windows collection.

Note

Once a template defined via the FooterTemplate property is created within a 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