0

Oracle Apex 应用程序:

我正在尝试通过 javascript 重定向到另一个页面,但出现以下错误:

"Application 105 Dialog page 11 cannot be rendered successfully. 
Ensure the page template in use on page 11 is of template type "Dialog page",
with appropriate JavaScript dialog initialization, dialog closure and dialog
cancel code defined."

这是我的代码:

function openPopup (P10_IN) {
    var url;
    url = 'f?p=105:11:5992241694125::::P11_IN:'+P10_IN ;
    w = open(url);
}         
4

1 回答 1

1

您可能已将要重定向到的页面设置为Appearance - Page Mode: "Modal Dialog".

将其设置为Appearance - Page Mode: "Normal",它应该可以按您的预期工作。

于 2019-10-31T08:28:33.517 回答