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

ASPxRibbon.Target Property

Gets or sets the window or frame in which to target the contents of the URLs associated with all links within a ribbon.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v18.2.dll

Declaration

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

Property Value

Type Default Description
String String.Empty

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

Remarks

Use the Target property to specify the common target (a window or frame) for all links within a ribbon control.

Setting the Target property defines that when any link (the ribbon item whose RibbonButtonItem.NavigateUrl property is defined) is clicked within a ribbon, the client web browser navigates to the specified URL and displays it in the window or frame specified by this 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 containing the link.
_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.

The Target property can be overridden at the item level using the RibbonButtonItem.Target property.

See Also