Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

GridOptionsDetail.ShowDetailTabs Property

Gets or sets whether detail tabs are displayed. This option must be applied to a master view.

Namespace: DevExpress.XtraGrid.Views.Grid

Assembly: DevExpress.XtraGrid.v24.2.dll

NuGet Packages: DevExpress.Win.Grid, DevExpress.Win.Navigation

#Declaration

[DefaultValue(true)]
[XtraSerializableProperty]
public virtual bool ShowDetailTabs { get; set; }

#Property Value

Type Default Description
Boolean true

true to display detail tabs; otherwise, false.

#Property Paths

You can access this nested property as listed below:

Object Type Path to ShowDetailTabs
GridView
.OptionsDetail .ShowDetailTabs

#Remarks

A single master row can contain multiple detail views. The ShowDetailTabs property specifies whether detail tabs are displayed. Users can utilize these tabs to switch between detail views. In the image below, the master view displays Products and Category detail tabs.

Show Detail Tabs

In the following image, tabs are hidden.

Hide Detail Tabs

If the EnableDetailToolTip option is enabled, a detail tooltip is displayed when the mouse pointer hovers over the master row’s expand button. These tooltips allow users to switch between detail views.

Hide Detail Tabs

Note that expand buttons are not displayed if the EnableMasterViewMode or ShowDetailButtons option is disabled.

See Also