Skip to main content
A newer version of this page is available. .

GridView.LoadingPanelVisible Property

Gets or sets whether the animated Loading Panel indicating the data load process is displayed.

Namespace: DevExpress.XtraGrid.Views.Grid

Assembly: DevExpress.XtraGrid.v19.2.dll

Declaration

[Browsable(false)]
public bool LoadingPanelVisible { get; set; }

Property Value

Type Description
Boolean

true, if the Loading panel is displayed; otherwise, false.

Remarks

Set the LoadingPanelVisible property to true to display the Loading Panel containing an animated image (obtained from the current skin). Set this property to false to hide the panel.

GridControl-LoadingPanel

While the Loading Panel is being displayed, the current Grid View is read-only.

You can also display and hide the Loading panel by calling the GridView.ShowLoadingPanel and GridView.HideLoadingPanel methods, respectively.

Note

The Loading Panel is designed to be used in server mode. Note that if the Loading Panel is used in non-server mode and the Grid Control displays master-detail relationships, the Loading Panel may be overlapped by detail Views that are opened. In this scenario, to show a loading indicator, we suggest that you use a WaitForm instead of the grid control’s built-in Loading Panel.

The following code snippets (auto-collected from DevExpress Examples) contain references to the LoadingPanelVisible property.

Note

The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.

See Also