问题描述
我创建了一个过程来处理数据。此过程需要〜1分钟完成。我如何创建一个wating(进度)栏来等待过程的结果?
注意:现在我使用Apex的版本4。请帮助我使用javascript和css实现的方式
这里是没有javascript或css的最简单的解决方案。 >
假设您有一个名为 P1_Submit 的按钮,该按钮提交页面并触发您处理。编辑按钮,并在操作选择通过动态操作定义。然后创建动态操作:
- 事件=点击
- 选择类型=按钮
- Button = P1_Submit
- 条件=无条件
- True Action =提交页面
- 取消选中防火网页加载
- 显示处理=是
I create a procedure to process data. This procedure take ~1 minute to complete. How can I create a wating (progress) bar to wait for the result of procedure?
Note: Now I use version 4 of Apex. Please help me the way to implement using javascript and css
Here is the easiest solution with no javascript or css.
Lets say you have a button named 'P1_Submit' which submits the page and triggers you process. Edit the button and at Action select Defined by Dynamic Action. Then create a dynamic action with:
- Event=Click
- Selection Type=Button
- Button=P1_Submit
- Condition=No Condition
- True Action=Submit Page
- Uncheck Fire On Page Load
- Show Processing=Yes
这篇关于Oracle Apex:在等待结果时创建进度条的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!