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!