diff options
author | ivan <ivan> | 2005-10-24 11:56:35 +0000 |
---|---|---|
committer | ivan <ivan> | 2005-10-24 11:56:35 +0000 |
commit | fbff7663ff6fb115bcd4dae2eb991b90339bf68d (patch) | |
tree | 6c7586521f4a8fd5ab20d57f9263ada018380a5f /httemplate/elements/progress-init.html | |
parent | cccd0b7cd38a88c131e19981be38434f87abe194 (diff) |
fix rate plan editing with new xmlhttp progressbar - use POST instead of GET. also optimize SQL on rate search screen
Diffstat (limited to 'httemplate/elements/progress-init.html')
-rw-r--r-- | httemplate/elements/progress-init.html | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/httemplate/elements/progress-init.html b/httemplate/elements/progress-init.html index fb408400a..7844f5678 100644 --- a/httemplate/elements/progress-init.html +++ b/httemplate/elements/progress-init.html @@ -12,8 +12,9 @@ %> <%= include('/elements/xmlhttp.html', - 'url' => $action, - 'subs' => [ 'start_job' ], + 'method' => 'POST', + 'url' => $action, + 'subs' => [ 'start_job' ], ) %> <SCRIPT TYPE="text/javascript" SRC="../elements/overlibmws.js"></SCRIPT> @@ -27,6 +28,8 @@ function OLiframeContent(src, width, height, name) { function <%=$key%>process () { + //alert('<%=$key%>process for form <%=$formname%>'); + 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 ); @@ -40,8 +43,10 @@ function <%=$key%>process () { ) { if ( field.type == 'select-multiple' ) { + //alert('select-multiple ' + field.name); for (var j=0; j < field.options.length; j++) { if ( field.options[j].selected ) { + //alert(field.name + ' => ' + field.options[j].value); Hash[x++] = field.name; Hash[x++] = field.options[j].value; } @@ -61,6 +66,8 @@ function <%=$key%>process () { // jsrsPOST = true; // jsrsExecute( '<%= $action %>', <%=$key%>myCallback, 'start_job', Hash ); + //alert('start_job( ' + Hash + ', <%=$key%>myCallback )' ); + //alert('start_job()' ); start_job( Hash, <%=$key%>myCallback ); } |