From: ivan Date: Sun, 11 Oct 2009 01:45:01 +0000 (+0000) Subject: new rows and cols options X-Git-Tag: freeside_1_9_1^2~9 X-Git-Url: http://git.freeside.biz/gitweb/?a=commitdiff_plain;h=6dd0391446cc480edad04259b4e2f541c49c8ab8;p=freeside.git new rows and cols options --- 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'};