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

ListView.MasterDetailMode Property

Specifies whether to display the Detail View of the currently selected object near the current List View.

Namespace: DevExpress.ExpressApp

Assembly: DevExpress.ExpressApp.v19.1.dll

Declaration

[Browsable(false)]
public MasterDetailMode MasterDetailMode { get; set; }

Property Value

Type Description
MasterDetailMode

A MasterDetailMode enumeration value specifying whether to display the Detail View of the currently selected object near the current List View.

Available values:

Name Description
ListViewOnly

A List View is displayed without a Detail View alongside.

ListViewAndDetailView

A List View is displayed alongside a Detail View.

Remarks

You can set a value for this attribute in code using the DefaultListViewOptionsAttribute attribute (see Data Annotations in Data Model).

The value of this property is assigned to the Application Model‘s Application | Views | List View node’s IModelListView.MasterDetailMode property. You can change this property’s value using the Model Editor.

The default value of this property is the value that is assigned to the MasterDetailMode property of the Application Model’s List View node.

Only WinForms applications and ASP.NET applications with the ASPxGridListEditor support the MasterDetailMode.ListViewAndDetailView mode.

See Also