Apex 4.2
Theme 21
Page Template; Application Defaut
I have some pages in my application that take a while to load, so I wanted to display something
to show the users while the page was loading.
So from my menu I first branch to a page that will just display the progress gif, then a branch takes the user
to the correct page.
This is all working fine, apart from the progess gif appears, but it is not animated
I have the following code on page zero
<style type="text/css">
#AjaxLoading{padding:5px;font-size:18px;width:250px;text-align:center;left:30%;top:30%;position:absolute;background-color:Lightgrey;}
span.reload{font-size:7pt;margin-left:200px;color:#bbbbbb;font-weight:normal;}
</style>
<script type="text/javascript">
<!--
function html_Submit_Progress(pThis){
$x_Show('AjaxLoading');
window.setTimeout('$s("AjaxLoading",$x("AjaxLoading").innerHTML)', 100);
doSubmit('SAVE');
}
//-->
</script>
<div id="AjaxLoading" style="display:none;">..Retrieving Data From &P0_PROGRESS_TEXT...<br /><img src="/i/processing3.gif" id="wait" /></div>
Any ideas appreciated
Gus