diff options
author | Mark Wells <mark@freeside.biz> | 2014-09-23 14:33:36 -0700 |
---|---|---|
committer | Mark Wells <mark@freeside.biz> | 2014-09-23 14:33:36 -0700 |
commit | db21275347bb469868e81d4ca2bbed846d95f143 (patch) | |
tree | 4b6aadc45873164952c300ac122fe63d0c062284 /httemplate/elements/select-table.html | |
parent | 9978f575bece86766998cd41b68df200d151c44b (diff) |
package churn report filtering by advertising source, tower, and zip code, #26999
Diffstat (limited to 'httemplate/elements/select-table.html')
-rw-r--r-- | httemplate/elements/select-table.html | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/httemplate/elements/select-table.html b/httemplate/elements/select-table.html index 9f26a3591..e73638801 100644 --- a/httemplate/elements/select-table.html +++ b/httemplate/elements/select-table.html @@ -70,6 +70,7 @@ Example: NAME = "<% $opt{'element_name'} || $opt{'field'} || $key %>" ID = "<% $opt{'id'} || $key %>" <% $onchange %> + <% $size %> <% $opt{'element_etc'} %> > @@ -212,4 +213,6 @@ unless ( !ref($value) && $value < 1 # !$value #ignore negatives too my @pre_options = $opt{pre_options} ? @{ $opt{pre_options} } : (); my @post_options = $opt{post_options} ? @{ $opt{post_options} } : (); +my $size = $opt{'size'} ? 'SIZE=' . $opt{'size'} : ''; + </%init> |