From 6dd0391446cc480edad04259b4e2f541c49c8ab8 Mon Sep 17 00:00:00 2001 From: ivan Date: Sun, 11 Oct 2009 01:45:01 +0000 Subject: [PATCH] new rows and cols options --- httemplate/elements/tr-textarea.html | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/httemplate/elements/tr-textarea.html b/httemplate/elements/tr-textarea.html index fb41ac38f..ae2ef81b6 100644 --- a/httemplate/elements/tr-textarea.html +++ b/httemplate/elements/tr-textarea.html @@ -4,6 +4,8 @@ @@ -19,6 +21,9 @@ 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'}; -- 2.11.0