ASPxGridSettings.ShowTitlePanel Property
Specifies whether the grid displays the Title Panel.
Namespace: DevExpress.Web
Assembly: DevExpress.Web.v24.2.dll
Declaration
Property Value
Type | Default | Description |
---|---|---|
Boolean | false |
|
Remarks
Set the ShowTitlePanel
property to true
to display the Title Panel in the grid.
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