Skip to main content
.NET Framework 4.6.2+
  • The page you are viewing does not exist in the .NET 8.0+ platform documentation. This link will take you to the parent topic of the current section.

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

PopupWindowManager.ShowPopup(PopupWindowShowAction, Boolean, WebWindow, String, Boolean, String, Boolean, Boolean) Method

In This Article

Registers the client script that is automatically executed when processing of the current request is complete. This script displays the pop-up window using the ASPxPopupControl.

Namespace: DevExpress.ExpressApp.Web

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

NuGet Package: DevExpress.ExpressApp.Web

#Declaration

[Browsable(false)]
public void ShowPopup(
    PopupWindowShowAction action,
    bool isSizeable,
    WebWindow webWindow,
    string callBackFuncName,
    bool forcePostBack,
    string targetControlId,
    bool useFindTemplate,
    bool showInFindPopup
)

#Parameters

Name Type Description
action PopupWindowShowAction

An PopupWindowShowAction object that represents a pop-up window show Action.

isSizeable Boolean

true, if the pop-up window is sizeable; otherwise, false. Has no effect on pop-ups that slide from the right edge of the page in a new Web UI.

webWindow WebWindow

A WebWindow object that is a Window used in ASP.NET Web Forms applications.

callBackFuncName String

A String that is the name of JavaScript function to be executed when the pop-up window is closed. If you do not need to execute a function, pass the empty string.

forcePostBack Boolean

true, if a postback is required when the pop-up window is closed; otherwise, false. For instance, a postback is needed to start file downloading.

targetControlId String

A String value that is a target control id.

useFindTemplate Boolean

true, if the FindDialogTemplateContentNew template should be used; otherwise, false. Has effect in the new web UI only.

showInFindPopup Boolean

true, if the pop-up window displays in a pop-up using the FindDialogTemplateContentNew template; otherwise, false. Has effect in the new web UI only.

See Also