Skip to main content
Tab

ASPxGridSettings.ShowTitlePanel Property

Specifies whether the grid displays the Title Panel.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v23.2.dll

NuGet Package: DevExpress.Web

Declaration

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

Property Value

Type Default Description
Boolean false

true to display the title panel; otherwise, false.

Remarks

Set the ShowTitlePanel property to true to display the Title Panel in the grid.

ASPxGridView - TitlePanel

To specify the text within the Title Panel, use the Title property. To customize the panel’s appearance, specify the TitlePanel property.

<dx:ASPxGridView ID="Grid" runat="server">
    <!-- ... -->
    <Settings ShowTitlePanel="true" />
    <SettingsText Title="ASPxGridView Title" />
    <Styles>
        <TitlePanel>
            <!-- ... -->
        </TitlePanel>
    </Styles>
</dx:ASPxGridView>
See Also