Skip to main content

BootstrapCallbackPanel.HideContentOnCallback Property

Gets or sets a value that specifies whether the panel’s contents are hidden while a callback sent by the panel control is being processed on the server side.

Namespace: DevExpress.Web.Bootstrap

Assembly: DevExpress.Web.Bootstrap.v23.2.dll

NuGet Package: DevExpress.Web.Bootstrap

Declaration

[DefaultValue(false)]
public bool HideContentOnCallback { get; set; }

Property Value

Type Default Description
Boolean false

true to hide the panel’s content; false to preserve the panel content being displayed.

Remarks

Set the HideContentOnCallback property to true, to not display the panel’s content during callback processing.

If the HideContentOnCallback property is set to false (the default behavior), the panel’s content is displayed while a callback is being processed on the server side.

While waiting a callback responce, a specific Loading Panel is displayed within the control. The Loading Panel’s appearance can be customized using the BootstrapCallbackPanel.SettingsLoadingPanel property.

See Also