diff options
author | ivan <ivan> | 2011-08-10 05:22:32 +0000 |
---|---|---|
committer | ivan <ivan> | 2011-08-10 05:22:32 +0000 |
commit | 424ae31847c4fd44e6ed55ec275c8e668c7d2b51 (patch) | |
tree | 96455a553e39b85eda278a78f29d0042da26e7c5 /httemplate/elements/select-phonenum.html | |
parent | 9694a17150af02e8fa3e61f732b776c5f7389874 (diff) |
multiple DID provisioning, RT#13721
Diffstat (limited to 'httemplate/elements/select-phonenum.html')
-rw-r--r-- | httemplate/elements/select-phonenum.html | 17 |
1 files changed, 12 insertions, 5 deletions
diff --git a/httemplate/elements/select-phonenum.html b/httemplate/elements/select-phonenum.html index 25a885a39..d555bf4b6 100644 --- a/httemplate/elements/select-phonenum.html +++ b/httemplate/elements/select-phonenum.html @@ -30,7 +30,9 @@ what.form.<% $opt{'prefix'} %>phonenum.options[i] = null; % if ($opt{empty}) { - opt(what.form.<% $opt{'prefix'} %>phonenum, '', '<% $opt{empty} %>'); + if ( what.form.<% $opt{'prefix'} %>phonenum.type != 'select-multiple' ){ + opt(what.form.<% $opt{'prefix'} %>phonenum, '', '<% $opt{empty} %>'); + } % } // add the new phonenums @@ -127,10 +129,15 @@ <DIV ID="phonenumerror" STYLE="display:none"><IMG SRC="<%$fsurl%>images/cross.png"> <B>Select a different city/exchange</B></DIV> % } -<SELECT ID="<% $opt{'prefix'} %>phonenum" NAME="<% $opt{'prefix'} %>phonenum" - notonChange="<% $opt{'prefix'} %>phonenum_changed(this); <% $opt{'onchange'} %>" - <% $opt{'disabled'} %>> - <OPTION VALUE="">Select phone number</OPTION> +<SELECT <% $opt{multiple} ? 'MULTIPLE SIZE=25' : '' %> + ID = "<% $opt{'prefix'} %>phonenum" + NAME = "<% $opt{'prefix'} %>phonenum" + <% $opt{'disabled'} %> +%# notonChange="<% $opt{'prefix'} %>phonenum_changed(this); <% $opt{'onchange'} %>" +> +% unless ( $opt{multiple} ) { + <OPTION VALUE="">Select phone number</OPTION> +% } </SELECT> <%init> |