diff options
author | ivan <ivan> | 2005-09-25 08:13:36 +0000 |
---|---|---|
committer | ivan <ivan> | 2005-09-25 08:13:36 +0000 |
commit | 76161f1a2ae0f96470bed4089b00eff5abb16cff (patch) | |
tree | 1d727c8829d651347f3bcd79971e519674290f23 /httemplate/edit/cust_main | |
parent | 672f360a644d12d7eab223fd00cd3426b00756cd (diff) |
get rid of JSRS iframe foo for progress bar, use XMLHTTPRequest instead. really should have done that in the first place. JSON will wait until another day...
Diffstat (limited to 'httemplate/edit/cust_main')
-rw-r--r-- | httemplate/edit/cust_main/select-country.html | 6 | ||||
-rw-r--r-- | httemplate/edit/cust_main/select-county.html | 6 |
2 files changed, 10 insertions, 2 deletions
diff --git a/httemplate/edit/cust_main/select-country.html b/httemplate/edit/cust_main/select-country.html index 44f4f0a55..014effd66 100644 --- a/httemplate/edit/cust_main/select-country.html +++ b/httemplate/edit/cust_main/select-country.html @@ -10,7 +10,11 @@ %> -<%= include('/elements/xmlhttp.html', $p.'misc/states.cgi', $opt{'prefix'}. 'get_states') %> +<%= include('/elements/xmlhttp.html', + 'url' => $p.'misc/states.cgi', + 'subs' => [ $opt{'prefix'}. 'get_states' ], + ) +%> <SCRIPT TYPE="text/javascript"> diff --git a/httemplate/edit/cust_main/select-county.html b/httemplate/edit/cust_main/select-county.html index 70a8f9477..3de380b31 100644 --- a/httemplate/edit/cust_main/select-county.html +++ b/httemplate/edit/cust_main/select-county.html @@ -15,7 +15,11 @@ <% if ( $countyflag ) { %> - <%= include('/elements/xmlhttp.html', $p.'misc/counties.cgi', $opt{'prefix'}. 'get_counties' ) %> + <%= include('/elements/xmlhttp.html', + 'url' => $p.'misc/counties.cgi', + 'subs' => [ $opt{'prefix'}. 'get_counties' ], + ) +%> <SCRIPT TYPE="text/javascript"> |