From e491946343abd5b7dddfd19f20a44ceb767bd37b Mon Sep 17 00:00:00 2001 From: ivan Date: Mon, 12 Jul 2010 13:18:06 +0000 Subject: message templates, RT#8896 --- httemplate/elements/tr-htmlarea.html | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 httemplate/elements/tr-htmlarea.html (limited to 'httemplate/elements/tr-htmlarea.html') diff --git a/httemplate/elements/tr-htmlarea.html b/httemplate/elements/tr-htmlarea.html new file mode 100644 index 000000000..1a4e25080 --- /dev/null +++ b/httemplate/elements/tr-htmlarea.html @@ -0,0 +1,25 @@ +<% include('tr-td-label.html', @_ ) %> + + > + + <% include('htmlarea.html', @_ ) %> + + + + + +<%init> + +my %opt = @_; + +my $onchange = $opt{'onchange'} + ? 'onChange="'. $opt{'onchange'}. '(this)"' + : ''; + +#my $rows = $opt{'rows'} ? 'ROWS="'.$opt{'rows'}.'"' : ''; +#my $cols = $opt{'cols'} ? 'COLS="'.$opt{'cols'}.'"' : ''; + +my $cell_style = $opt{'cell_style'} ? 'STYLE="'. $opt{'cell_style'}. '"' : ''; +#my $curr_value = $opt{'curr_value'}; + + -- cgit v1.2.1