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!

Progress Bar Display Problem

AnkosuAug 28 2014 — edited Sep 16 2014

Hello,

i have a strange jQuery Problem with dynamic actions.

I worked with Apex 4.2 on IE 11. I've tried theme 7 and 26!

First I changed a page template and added a progress bar div:

...

<body #ONLOAD#>

  <div id="OWN_PROGRESS_BAR"

    <h1>Loading!</h1>

  </div>

...

#OWN_PROGRESS_BAR

{

  height:200px;

  width:400px;

  position:absolute;

  top:50%;

  left:50%;

  margin:-100px auto auto -200px;

  background:#fff;

  border:1px solid #555;

  z-index: 99999999;

  display: none;

}

Then i added js functions fo showing and hiding the element:

  function ShowOwnProgressBar()

  {

    $("#OWN_PROGRESS_BAR").show("slow");

  }

  function HideOwnProgressBar()

  {

    $("#OWN_PROGRESS_BAR").hide("slow");

  }

Then i added a button that triggers an event, which is catched by dynamic action.

In the dynamic action i do following steps:

1. Execute Javascript: ShowOwnProgressBar()

2 Execute PL/SQL (wait for Result)

3 SetValue

4 SetValue

5 Refresh region

6 Execute Javascript: HideOwnProgressBar

This isn't working! The progress-bar is shown for a second after finishing the PL/SQL process!

Has somebody an idea where the problem could be?

I'am thankful for any help!

This post has been answered by Jorge Rimblas on Aug 28 2014
Jump to Answer
Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on Oct 14 2014
Added on Aug 28 2014
3 comments
427 views