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

PopupWindow.HeaderNavigateUrl 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 header.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v18.2.dll

Declaration

[DefaultValue("")]
public string HeaderNavigateUrl { 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 HeaderNavigateUrl property, the window’s header text and header image serve as a link (the header 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 HeaderNavigateUrl property of a popup window overrides the value set for the popup control’s ASPxPopupControlBase.HeaderNavigateUrl property (if any) which specifies a common navigation location for header links of all popup windows from the ASPxPopupControl.Windows collection.

If no navigation location is assigned for a window’s header link (the HeaderNavigateUrl and ASPxPopupControlBase.HeaderNavigateUrl properties are set to an empty string (String.Empty) no navigation is performed when clicking the header’s text or image.

See Also