刷新经典报告
我正在尝试使用此代码刷新经典报告,将其放入函数和全局变量声明
中并在页面加载时执行
中调用该函数,效果很好
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在您的 html 标头中,您定义以下脚本:
我相信您会遇到一些 jquery 冲突问题,因为 apex 默认情况下已经包含 jquery 文件! (当您查看页面源时,您可以验证这一点)
当您删除对 jquery 文件的引用时,您的报告将再次正确刷新。
如果您想使用自己的库,最好更改页面模板,使其不包含标准库,而是包含您自己的库。
或者,也许可以通过一些巫术来定义 jquery var ($),例如 这里 - 尽管我不知道怎么办。
In your html header you define the following scripts:
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)
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.