diff options
author | Christopher Burger <burgerc@freeside.biz> | 2019-06-04 08:11:19 -0400 |
---|---|---|
committer | Christopher Burger <burgerc@freeside.biz> | 2019-06-04 08:11:19 -0400 |
commit | f5481d63043954fa6fa8a34a5820b23408192f8b (patch) | |
tree | 9d4e3d6b9fa7a977627b24af29f53e28361230fc /fs_selfservice/FS-SelfService/cgi/contact.html | |
parent | 5b0df166c22e13eba83fabee858846ead6a54141 (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.html | 11 |
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';"; } |