Skip to Main Content

APEX

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

Widget/spinner is not removing when long running BI Publisher report completed

FaadiMay 28 2022 — edited May 29 2022

used the following code by pressing button to call the branch.


apex.page.submit( {
          request: "save",
          showWait: true,
       } );

Following BI Publisher report called on branch.

 f?p=&APP_ID.:0:&SESSION.:PRINT_REPORT=report_summary

The spinner widget will be started displaying when long running report started generating.
But spinner is not removing once the long running report generated.
Even i tried window.onclose and several other related functions.

window.onclose = (function() { 
    #apex.wait.overlay.remove();
    #u-processing.remove();
});

Timer function is also there but it has to be set statically time which is not practical when long running report does have different timing to get the reports.

setTimeout(function(){apex.widget.waitPopup()},10);

Any idea how to close the spinner dynamically?

Comments
Post Details
Added on May 28 2022
0 comments
223 views