Apex 5.0:在执行数据库操作时显示进度条

Apex 5.0: Show a progress bar while Database Action is performed

实现 Waitbar 或 Progressbar

在我的 Apex 5.0 应用程序中,我有一个 SQL 更新需要很长时间才能处理,我想实现一个指示器来显示它仍然是 运行,以便用户不会再开始行动。

进度条可以解决问题,有人可以建议这样做的方法吗?

(无法使用插件)

使用JavaScript函数apex.sumbit提交页面,包含showWait选项显示进度条。这是一个例子...

apex.submit({  request:"DELETE",  set:{"P1_DEPTNO":10, "P1_EMPNO":5433},  showWait:true});

只需将提交按钮的操作更改为动态操作

  • On dynamic action choose ON CLICK as Event .Choose Button for Selection Type and Choose Name of your submit Button to Button

  • Then on Action, Choose SUBMIT PAGE

  • Then on Request /Button Name, put your SUBMIT button's Name.

  • Then set SHOW PROCESSING to YES