diff options
| author | ivan <ivan> | 2008-01-04 02:23:20 +0000 |
|---|---|---|
| committer | ivan <ivan> | 2008-01-04 02:23:20 +0000 |
| commit | 93838a89d0010da5c4757a5dc4f626d6bfe806f8 (patch) | |
| tree | a9e667398d85216116cc48e50c3d5efcb7e2ec7b /httemplate/elements/tr-select.html | |
| parent | f3dcab6b9862f3e4f85cdbeed428861e34271a51 (diff) | |
reprocussions: backporting elements from HEAD needed for edit.html
Diffstat (limited to 'httemplate/elements/tr-select.html')
| -rw-r--r-- | httemplate/elements/tr-select.html | 61 |
1 files changed, 61 insertions, 0 deletions
diff --git a/httemplate/elements/tr-select.html b/httemplate/elements/tr-select.html new file mode 100644 index 000000000..07b0a01d5 --- /dev/null +++ b/httemplate/elements/tr-select.html @@ -0,0 +1,61 @@ +<% include('tr-td-label.html', @_ ) %> + + <TD <% $style %>> + + <SELECT NAME = "<% $opt{field} %>" + ID = "<% $opt{id} %>" + previousValue = "<% $curr_value %>" + previousText = "<% $labels->{$curr_value} || $curr_value %>" + <% $onchange %> + > + +% if ( $opt{options} ) { +% +% foreach my $option ( @{ $opt{options} } ) { #just arrayref for now + + <OPTION VALUE="<% $option %>" + <% $opt{curr_value} eq $option ? 'SELECTED' : '' %> + > + <% $labels->{$option} || $option %> + </OPTION> + +% } +% +% } else { #deprecated weird value hashref used only by reason.html +% +% my $aref = $opt{'value'}->{'values'}; +% my $vkey = $opt{'value'}->{'vcolumn'}; +% my $ckey = $opt{'value'}->{'ccolumn'}; +% foreach my $v (@$aref) { + + <OPTION VALUE="<% $v->$vkey %>" + <% ($opt{curr_value} eq $v->$vkey) ? 'SELECTED' : '' %> + > + <% $v->$ckey %> + </OPTION> + +% } +% +% } + + </SELECT> + + </TD> + +</TR> + +<%init> + +my %opt = @_; + +my $onchange = $opt{'onchange'} + ? 'onChange="'. $opt{'onchange'}. '(this)"' + : ''; + +my $labels = $opt{'option_labels'} || $opt{'labels'}; + +my $style = $opt{'cell_style'} ? 'STYLE="'. $opt{'cell_style'}. '"' : ''; + +my $curr_value = $opt{'curr_value'}; + +</%init> |
