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