merge webpay support in with autoselection of old realtime_bop and realtime_refund_bop
[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               <% $onchange %>
8     ><% $curr_value |h %></TEXTAREA>
9
10   </TD>
11
12 </TR>
13
14 <%init>
15
16 my %opt = @_;
17
18 my $onchange = $opt{'onchange'}
19                  ? 'onChange="'. $opt{'onchange'}. '(this)"'
20                  : '';
21
22 my $cell_style = $opt{'cell_style'} ? 'STYLE="'. $opt{'cell_style'}. '"' : '';
23 my $curr_value = $opt{'curr_value'};
24
25 </%init>