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

ASPxTabControl.SyncSelectionMode Property

Gets or sets whether the tab, whose navigation location points to the currently browsed web page, is automatically activated.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v19.1.dll

Declaration

[DefaultValue(SyncSelectionMode.CurrentPathAndQuery)]
public SyncSelectionMode SyncSelectionMode { get; set; }

Property Value

Type Default Description
SyncSelectionMode **CurrentPathAndQuery**

A SyncSelectionMode enumeration value that specifies whether automatic synchronization of tab selection with the path of the currently browsed page is enabled.

Available values:

Name Description
None

Automatic selection synchronization is disabled.

CurrentPathAndQuery

A web control’s item, whose NavigateUrl property’s value matches the URL and query string of the currently browsed page, is displayed selected.

CurrentPath

A web control’s item, whose NavigateUrl property’s value points to the URL of the currently browsed page, is displayed selected. The query string appended to the URL is ignored.

Remarks

If the SyncSelectionMode property is set to ‘CurrentPath’, the tab, whose Tab.NavigateUrl property’s value points to the URL of the currently browsed page, is automatically activated. In this case, the query string appended to the URL is ignored.

If the SyncSelectionMode property is set to ‘CurrentPathAndQuery’, the tab is automatically activated if its Tab.NavigateUrl property’s value matches the URL and query string of the page currently being browsed.

To disable automatic synchronization, set the SyncSelectionMode property to ‘None’.

See Also