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

后端 未结 2 1188
轮回少年
轮回少年 2021-01-03 17:23

Implementing a Waitbar or Progressbar

In my Apex 5.0 application I have a SQL Update which is taking very long to process, and I want to implement a

相关标签:
2条回答
  • 2021-01-03 17:48

    Just Change the action of your SUBMIT button to Dyanamic Action

    • 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

    0 讨论(0)
  • 2021-01-03 18:03

    Use the JavaScript function apex.sumbit to submit the page and include the showWait option to display the progress bar. Here is an example...

    apex.submit({  request:"DELETE",  set:{"P1_DEPTNO":10, "P1_EMPNO":5433},  showWait:true});
    
    0 讨论(0)
提交回复
热议问题