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);
} 发布于 2019-10-31 16:28:34
您可能已经将要重定向到的页面设置为Appearance - Page Mode: "Modal Dialog"。
将它设置为Appearance - Page Mode: "Normal",它应该会像您预期的那样工作。
https://stackoverflow.com/questions/58639196
复制相似问题