diff options
Diffstat (limited to 'httemplate/elements/tr-td-label.html')
| -rw-r--r-- | httemplate/elements/tr-td-label.html | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/httemplate/elements/tr-td-label.html b/httemplate/elements/tr-td-label.html index 1d96cf307..80dddaa47 100644 --- a/httemplate/elements/tr-td-label.html +++ b/httemplate/elements/tr-td-label.html @@ -6,7 +6,7 @@ Note that this puts the 'label' argument into the document verbatim, with no escaping or localization. </%doc> -<TR> +<TR id="<% $opt{'id'} %>_row" <% $row_style %>> <TH ALIGN = "right" VALIGN = "<% $opt{'valign'} || 'top' %>" @@ -22,6 +22,8 @@ my $style = 'padding-top: 3px'; $style .= '; '. $opt{'cell_style'} if $opt{'cell_style'}; +my $row_style = 'style="visibility:collapse;"' if $opt{'hide_onload'}; + my $required = $opt{'required'} ? '<font color="#ff0000">*</font> ' : ''; </%init> |
