RT# 82137 - default payment amount now has processing fee in total if processing...
[freeside.git] / httemplate / elements / tr-textarea.html
1 <% include('tr-td-label.html', @_ ) %>
2
3   <TD <% $cell_style %>>
4
5     <TEXTAREA NAME          = "<% $opt{field} %>"
6               ID            = "<% $opt{id} %>"
7               <% $rows %>
8               <% $cols %>
9               <% $onchange %>
10     ><% $curr_value |h %></TEXTAREA>
11
12   </TD>
13
14 </TR>
15
16 <%init>
17
18 my %opt = @_;
19
20 my $onchange = $opt{'onchange'}
21                  ? 'onChange="'. $opt{'onchange'}. '(this)"'
22                  : '';
23
24 my $rows = $opt{'rows'} ? 'ROWS="'.$opt{'rows'}.'"' : '';
25 my $cols = $opt{'cols'} ? 'COLS="'.$opt{'cols'}.'"' : '';
26
27 my $cell_style = $opt{'cell_style'} ? 'STYLE="'. $opt{'cell_style'}. '"' : '';
28 my $curr_value = $opt{'curr_value'};
29
30 </%init>