aspnet-devexpress-dot-web-dot-aspxgridsettings-4e62f61c.md
Specifies the visibility of the Status Bar.
Namespace : DevExpress.Web
Assembly : DevExpress.Web.v25.2.dll
NuGet Package : DevExpress.Web
[DefaultValue(GridViewStatusBarMode.Auto)]
public GridViewStatusBarMode ShowStatusBar { get; set; }
<DefaultValue(GridViewStatusBarMode.Auto)>
Public Property ShowStatusBar As GridViewStatusBarMode
| Type | Default | Description |
|---|---|---|
| GridViewStatusBarMode | Auto |
A GridViewStatusBarMode enumeration value.
|
Available values:
| Name | Description |
|---|---|
| Auto |
For the status bar: an element is visible if the SettingsLoadingPanel.Mode property is set to ShowOnStatusBar or the SettingsEditing.Mode property is set to Batch.
For the filter bar: an element is visible if the grid’s data is filtered.
| | Hidden |
An element is hidden.
| | Visible |
An element is visible.
|
Use the ShowStatusBar property to specify the visibility of the grid’s Status Bar.
<dx:ASPxGridView ID="Grid" runat="server" ...>
<!-- ... -->
<Settings ShowStatusBar="Hidden" />
</dx:ASPxGridView>
See Also