X-Git-Url: http://git.freeside.biz/gitweb/?a=blobdiff_plain;f=httemplate%2Felements%2Ftr-fixed.html;h=3e115d69af2ed3ebf127dd3285a5c3ec2fa47a36;hb=9d5f61a78f7cddeb65f6943f3e58326f47cc0c0b;hp=ac0dc8db68620d81fea420c26456395a2123ee32;hpb=9509e5bfb7f9331303153cac24d7bfecbe2ea9f1;p=freeside.git diff --git a/httemplate/elements/tr-fixed.html b/httemplate/elements/tr-fixed.html index ac0dc8db6..3e115d69a 100644 --- a/httemplate/elements/tr-fixed.html +++ b/httemplate/elements/tr-fixed.html @@ -1,15 +1,32 @@ -<% include('tr-td-label.html', @_ ) %> +<& tr-td-label.html, @_ &> - ><% $opt{'value'} %> + <% $colspan %>><% $value %> -<% include('hidden.html', %opt ) %> +<& hidden.html, %opt &> <%init> my %opt = @_; -my $style = $opt{'cell_style'} ? 'STYLE="'. $opt{'cell_style'}. '"' : ''; +my $style = $opt{'cell_style'} + ? ' STYLE="'. $opt{'cell_style'}. '" ' + : ' STYLE="color:#666666" '; + +my $colspan = $opt{'colspan'} ? ' COLSPAN="'. $opt{'colspan'}. '" ' : ''; + +my $value = $opt{'formatted_value'} || $opt{'curr_value'} || $opt{'value'}; +$value = $opt{'prefix'} . $value if defined($opt{'prefix'}); + +unless ( $opt{'noescape'} ) { + #compatibility with select-table and friends + if ( $opt{'multiple'} ) { + $value = [ split(/\s*,\s*/, $value) ] if !ref $value; + $value = join('
', map {encode_entities($_)} @$value); + } else { + $value = encode_entities($value) + } +}