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

PopupWindow.FooterNavigateUrl Property

Gets or sets an URL where the client’s web browser will navigate when the text or image is clicked within the window’s footer.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v18.2.dll

Declaration

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

Property Value

Type Default Description
String String.Empty

A string value which specifies the required navigation location.

Remarks

If a specific navigation location is assigned to the FooterNavigateUrl property, the window’s footer text and footer image serve as a link (the footer text is displayed underlined in this instance). A click on this link navigates the application to the specified location.

Note

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

If no navigation location is assigned for a window’s footer link (the FooterNavigateUrl and ASPxPopupControlBase.FooterNavigateUrl properties are set to an empty string), no navigation is performed when the footer’s text or image is clicked.

See Also