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

PopupWindow.FooterText Property

Gets or sets the text content of the window’s footer.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v19.2.dll

Declaration

[DefaultValue("")]
public string FooterText { get; set; }

Property Value

Type Default Description
String String.Empty

A string value that specifies the window’s footer text.

Remarks

Use the FooterText property to specify the text displayed within the window’s footer. The position of the text within the footer is specified by the AppearanceStyleBase.HorizontalAlign and AppearanceStyleBase.VerticalAlign properties available via the window’s PopupWindow.FooterStyle property.

If a specific navigation location is assigned for a window’s footer (via either the ASPxPopupControlBase.FooterNavigateUrl or PopupWindow.FooterNavigateUrl property), the window’s footer text set by the FooterText property servers as a link. It’s underlined and a click on it navigates the application to the specified location.

Note

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

See Also