Skip to main content
Tab

NavBarGroup.Target Property

Gets or sets the window or frame at which to target the contents of the URL associated with the group’s caption.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v23.2.dll

NuGet Package: DevExpress.Web

Declaration

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

Property Value

Type Default Description
String String.Empty

A string which identifies the window or frame at which to target the URL content.

Remarks

When a group’s NavBarGroup.NavigateUrl property is defined and the group’s caption (or an associated image) is clicked, the client’s web browser navigates to the specified URL and displays it in the window or frame as specified by the Target property. The available values of the property are listed in the table below.

Member Description
name The name of the target window or frame.
_blank Load the linked document into a new blank window. This window is not named.
_parent Load the linked document into the immediate parent of the document the link is in.
_search Load the linked document into the browser search pane.
_self Load the linked document into the window in which the link was clicked (the active window).
_top Load the linked document into the topmost window.
See Also