summaryrefslogtreecommitdiff
path: root/fs_selfservice/FS-SelfService/cgi/contact.html
diff options
context:
space:
mode:
authorChristopher Burger <burgerc@freeside.biz>2019-06-04 08:11:19 -0400
committerChristopher Burger <burgerc@freeside.biz>2019-06-04 08:11:19 -0400
commitf5481d63043954fa6fa8a34a5820b23408192f8b (patch)
tree9d4e3d6b9fa7a977627b24af29f53e28361230fc /fs_selfservice/FS-SelfService/cgi/contact.html
parent5b0df166c22e13eba83fabee858846ead6a54141 (diff)
RT# 83365 - Added city select to work like back end
Diffstat (limited to 'fs_selfservice/FS-SelfService/cgi/contact.html')
-rw-r--r--fs_selfservice/FS-SelfService/cgi/contact.html11
1 files changed, 5 insertions, 6 deletions
diff --git a/fs_selfservice/FS-SelfService/cgi/contact.html b/fs_selfservice/FS-SelfService/cgi/contact.html
index 7ae0d4880..798af7090 100644
--- a/fs_selfservice/FS-SelfService/cgi/contact.html
+++ b/fs_selfservice/FS-SelfService/cgi/contact.html
@@ -42,14 +42,11 @@
</TR>
<TR>
- <TH ALIGN="right"><%=$r%>City</TH>
- <TD>
- <INPUT TYPE="text" ID="<%=$pre%>city" NAME="<%=$pre%>city" VALUE="<%= encode_entities(${$pre.'city'}) %>" onChange="<%= $onchange %>" <%=$disabled%>>
- </TD>
<%=
- ($county_html, $state_html, $country_html) =
+ ($county_html, $state_html, $country_html, $city_html) =
FS::SelfService::regionselector( {
prefix => $pre,
+ selected_city => ${$pre.'city'},
selected_county => ${$pre.'county'},
selected_state => ${$pre.'state'},
selected_country => ${$pre.'country'},
@@ -58,6 +55,8 @@
locales => \@cust_main_county,
} );
+ $OUT .= qq!<TH ALIGN="right">${r}City</TH>!;
+ $OUT .= qq!<TD>$city_html</TD>!;
$OUT .= qq!<TH ALIGN="right">${r}State/County</TH>!;
$OUT .= qq!<TD>$county_html $state_html</TD>!;
$OUT .= qq!<TH>${r}Zip</TH>!;
@@ -73,7 +72,7 @@
<%=
if ( $disabled ) {
$OUT .= qq!var what = document.getElementById("${pre}city");!;
- for (qw( county state country ) ) {
+ for (qw( city county state country ) ) {
$OUT .= "what.form.$pre$_.disabled = true;";
$OUT .= "what.form.$pre$_.style.backgroundColor = '#dddddd';";
}