Skip to main content
Tab

ASPxGridSettings.ShowStatusBar Property

Specifies the visibility of the Status Bar.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v23.2.dll

NuGet Package: DevExpress.Web

Declaration

[DefaultValue(GridViewStatusBarMode.Auto)]
public GridViewStatusBarMode ShowStatusBar { get; set; }

Property Value

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.

Remarks

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