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

GridOptionsView.ShowErrorPanel Property

Gets or sets whether exceptions raised by a data source in instant feedback server mode are shown in a flyout panel (contains the “Copy Text” button).

Namespace: DevExpress.XtraGrid.Views.Grid

Assembly: DevExpress.XtraGrid.v21.2.dll

NuGet Packages: DevExpress.Win.Design, DevExpress.Win.Grid

Declaration

[DefaultValue(DefaultBoolean.Default)]
[XtraSerializableProperty]
public virtual DefaultBoolean ShowErrorPanel { get; set; }

Property Value

Type Default Description
DefaultBoolean Default

DefaultBoolean.Default or DefaultBoolean.True, if exceptions are shown in the flyout error panel; DefaultBoolean.False if exceptions are shown in a tooltip.

Available values:

Name Description
True

true. DefaultBoolean.True has a constant value of 0, while the standard true value corresponds to a value of 1. In Visual Basic, do not use implicit conversion of Boolean values to DefaultBoolean, and vice versa, as the conversion may produce incorrect results.

False

false. DefaultBoolean.False has a constant value of 1, while the standard false value corresponds to a value of 0. In Visual Basic, do not use implicit conversion of Boolean values to DefaultBoolean, and vice versa, as the conversion may produce incorrect results.

Default

The default behavior determined by the control’s logic.

Property Paths

You can access this nested property as listed below:

Object Type Path to ShowErrorPanel
GridView
.OptionsView .ShowErrorPanel

Remarks

If the ShowErrorPanel property is set to DefaultBoolean.Default or DefaultBoolean.True, exceptions are shown in a flyout error panel, which contains a button to copy the exception text.

GridControl-ShowErrorPanel.png

Set the ShowErrorPanel property to False to show exceptions in a simple tooltip. This tooltip does not allow you to copy its text.

See Also