Skip to main content

CallbackPanelSettings.HideContentOnCallback Property

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

Namespace: DevExpress.Web.Mvc

Assembly: DevExpress.Web.Mvc5.v24.2.dll

NuGet Package: DevExpress.Web.Mvc5

#Declaration

public bool HideContentOnCallback { get; set; }

#Property Value

Type Description
Boolean

true to hide the panel’s content; false to preserve display of the panel content.

#Remarks

If the HideContentOnCallback property is set to true, the panel’s content is not displayed during callback processing. In this case, within the panel, a specific Loading Panel is displayed, indicating that a callback response is anticipated.

Set the HideContentOnCallback property to false, if you need to preserve the panel’s content displayed while a callback is being processed on the server side. In this case, a Loading Panel is not used, and the panel is covered with a specific Loading Div element, whose style settings can be defined via the Styles.LoadingDiv property.

See Also