Skip to main content
Tab

ASPxGridViewDetailSettings.ShowDetailRow Property

Gets or sets whether the ASPxGridView can display detail rows.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v22.2.dll

NuGet Package: DevExpress.Web

Declaration

[DefaultValue(false)]
public bool ShowDetailRow { get; set; }

Property Value

Type Default Description
Boolean false

true to allow expanding detail rows; otherwise, false.

Property Paths

You can access this nested property as listed below:

Object Type Path to ShowDetailRow
ASPxGridView
.SettingsDetail .ShowDetailRow
GridViewProperties
.SettingsDetail .ShowDetailRow

Remarks

Be default, all data rows within the ASPxGridView are collapsed. They can be expanded by end-users or in code to display detail rows. This functionality is disabled if the ShowDetailRow property is set to false.

For more information, see Expanding and Collapsing Detail Rows.

View Example: Grid View for ASP.NET Web Forms - Simple master-detail implementation

See Also