刷新经典报告

发布于 2024-12-11 22:31:50 字数 439 浏览 2 评论 0原文

我正在尝试使用此代码刷新经典报告,将其放入函数和全局变量声明中并在页面加载时执行中调用该函数,效果很好

var doIt = 函数(){ $('#P_REPORT').trigger('apexrefresh'); setTimeout("doIt()", 5000); 但是

当我使用 jquery 添加到该页面时,它停止工作,我不知道为什么。

申请页面在这里 http://apex.oracle.com/pls/顶点/f?p=40263:5 工作空间:WORK_DEV 用户名: 用户 密码:123qweasd

如果有人可以帮助我,我将

不胜感激

I'm trying to refresh a classic report with this code and it works fine putting it in Function and Global Variable Declaration and calling the function in Execute when Page Loads

var doIt = function(){
$('#P_REPORT').trigger('apexrefresh');
setTimeout("doIt()", 5000);
}

but when i add to that page a modalfrom with jquery it stop working and i can't why.

The application page is here http://apex.oracle.com/pls/apex/f?p=40263:5
Workspace: WORK_DEV
Username: user
Password: 123qweasd

if someone could help me I would appreciate

Tanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

橘香 2024-12-18 22:31:50

在您的 html 标头中,您定义以下脚本:

<script src="http://cdn.jquerytools.org/1.2.6/jquery.tools.min.js"></script>
<script src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.16/jquery-ui.js"> </script>

我相信您会遇到一些 jquery 冲突问题,因为 apex 默认情况下已经包含 jquery 文件! (当您查看页面源时,您可以验证这一点)

<script src="/i/javascript/apex_4_1.min.js" type="text/javascript"></script>    

当您删除对 j​​query 文件的引用时,您的报告将再次正确刷新。

如果您想使用自己的库,最好更改页面模板,使其不包含标准库,而是包含您自己的库。

或者,也许可以通过一些巫术来定义 jquery var ($),例如 这里 - 尽管我不知道怎么办。

In your html header you define the following scripts:

<script src="http://cdn.jquerytools.org/1.2.6/jquery.tools.min.js"></script>
<script src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.16/jquery-ui.js"> </script>

I believe you get some jquery conflict issues with these, as apex already includes the jquery files by default! (when you view your page source you can verify this)

<script src="/i/javascript/apex_4_1.min.js" type="text/javascript"></script>    

When you remove the references to your jquery files, your report refreshes correctly again.

If you want to use your own libraries, it might be best to alter your page template so it doesnt include the standard libraries, but does your own.

Alternatively, maybe it is possible to define the jquery var ($) through some voodo, like here - though i wouldn't know how.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文