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

…衆ロ難τιáo~ 提交于 2019-12-03 21:39:12

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

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});
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!