PopupWindowManager.ShowPopup(PopupWindowShowAction, Boolean, WebWindow, String, Boolean, String, Boolean, Boolean) Method
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.1.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. |