Skip to main content
Tab

ASPxPopupControlBase.FooterTemplate Property

Gets or sets a template to display the default window‘s footer.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v23.2.dll

NuGet Package: DevExpress.Web

Declaration

[DefaultValue(null)]
public virtual ITemplate FooterTemplate { 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 a window’s footer.

Remarks

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

Note that any style settings defined for the footer via the ASPxPopupControl.FooterStyle (PopupControlStyles.Footer for ASPxDockPanel) property are still in effect for the window’s footer whose content is specified using the FooterTemplate property.

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.

Note

For ASPxPopupControl only:

If the ASPxPopupControl.Windows collection is not empty, the FooterTemplate property is not in effect. In this case, a common footer template for all popup windows from the ASPxPopupControl.Windows collection can be defined via the ASPxPopupControl.WindowFooterTemplate property. An individual window’s footer template can be specified, by using the window’s PopupWindow.FooterTemplate property.

See Also