Skip to main content
Tab

ASPxGridViewDetailSettings.ShowDetailButtons Property

Gets or sets whether detail buttons are displayed.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v23.2.dll

NuGet Package: DevExpress.Web

Declaration

[DefaultValue(true)]
public bool ShowDetailButtons { get; set; }

Property Value

Type Default Description
Boolean true

true to display detail buttons within data (master) rows; otherwise, false.

Property Paths

You can access this nested property as listed below:

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

Remarks

Detail buttons can be displayed if the ASPxGridViewDetailSettings.ShowDetailRow option is enabled.

<dx:ASPxGridView ID="Grud" runat="server" ...>
    <!-- ... -->
    <SettingsDetail ShowDetailRow="true" ShowDetailButtons="false" />
</dx:ASPxGridView>
See Also