summaryrefslogtreecommitdiff
path: root/httemplate/elements/progress-init.html
diff options
context:
space:
mode:
authorivan <ivan>2006-03-10 22:30:48 +0000
committerivan <ivan>2006-03-10 22:30:48 +0000
commit5f155263a2c9837640d2fab0817d1f36b8cb3f8c (patch)
tree413ad88fd7a2070d8a704c67c8769991d0adf954 /httemplate/elements/progress-init.html
parentb29780b983dd91fb679e8d01b91902b0ce186e9f (diff)
fix to (hopefully) allow multiple progress-init's in a page, also add second $cgi arg to all these progressbar calls...
Diffstat (limited to 'httemplate/elements/progress-init.html')
-rw-r--r--httemplate/elements/progress-init.html8
1 files changed, 4 insertions, 4 deletions
diff --git a/httemplate/elements/progress-init.html b/httemplate/elements/progress-init.html
index 7844f56..ba9f6ed 100644
--- a/httemplate/elements/progress-init.html
+++ b/httemplate/elements/progress-init.html
@@ -14,7 +14,7 @@
<%= include('/elements/xmlhttp.html',
'method' => 'POST',
'url' => $action,
- 'subs' => [ 'start_job' ],
+ 'subs' => [ $key.'start_job' ],
)
%>
<SCRIPT TYPE="text/javascript" SRC="../elements/overlibmws.js"></SCRIPT>
@@ -32,7 +32,7 @@ function <%=$key%>process () {
document.<%=$formname%>.submit.disabled=true;
- overlib( 'Submitting job to server...', WIDTH, 432, HEIGHT, 136, CAPTION, 'Please wait...', STICKY, AUTOSTATUSCAP, CLOSETEXT, '', CLOSECLICK, MIDX, 0, MIDY, 0 );
+ overlib( 'Submitting job to server...', WIDTH, 444, HEIGHT, 168, CAPTION, 'Please wait...', STICKY, AUTOSTATUSCAP, CLOSETEXT, '', CLOSECLICK, MIDX, 0, MIDY, 0 );
var Hash = new Array();
var x = 0;
@@ -68,13 +68,13 @@ function <%=$key%>process () {
//alert('start_job( ' + Hash + ', <%=$key%>myCallback )' );
//alert('start_job()' );
- start_job( Hash, <%=$key%>myCallback );
+ <%=$key%>start_job( Hash, <%=$key%>myCallback );
}
function <%=$key%>myCallback( jobnum ) {
- overlib( OLiframeContent('<%=$p%>elements/progress-popup.html?jobnum=' + jobnum + ';<%=$url_or_message_link%>;formname=<%=$formname%>' , 432, 136, 'progress_popup'), CAPTION, 'Please wait...', STICKY, AUTOSTATUSCAP, CLOSETEXT, '', CLOSECLICK, MIDX, 0, MIDY, 0 );
+ overlib( OLiframeContent('<%=$p%>elements/progress-popup.html?jobnum=' + jobnum + ';<%=$url_or_message_link%>;formname=<%=$formname%>' , 444, 168, 'progress_popup'), CAPTION, 'Please wait...', STICKY, AUTOSTATUSCAP, CLOSETEXT, '', CLOSECLICK, MIDX, 0, MIDY, 0 );
}