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

ASPxPopupControlBase.ShowRefreshButton Property

Gets or sets a value that specifies whether a window’s refresh button is displayed.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v18.2.dll

Declaration

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

Property Value

Type Default Description
Boolean **false**

true, if the button is displayed; otherwise, false.

Remarks

Use the ShowRefreshButton property to control the refresh button visibility. The refresh button can work in two different ways:

  1. If the ASPxPopupControlBase.ContentUrl property is not specified, the window/panel performs a callback, so the ASPxPopupControlBase.WindowCallback event is raised.

  2. If the ASPxPopupControlBase.ContentUrl property is specified, the window/panel refreshes the page inside the iframe.

Note

For the ASPxPopupControl only:

If the ASPxPopupControl.Windows collection is empty, the ShowRefreshButton property is applied to the default popup window. Otherwise, the ShowRefreshButton property specifies the refresh button visibility for all popup windows in the ASPxPopupControl.Windows collection. A specific window’s button visibility is controlled by the PopupWindow.ShowRefreshButton property.

See Also