X-Git-Url: http://git.freeside.biz/gitweb/?a=blobdiff_plain;f=httemplate%2Felements%2Ftr-input-text.html;h=49ae166ee44e5635abb0b8dd44c6ea1e10533b96;hb=7aef77aa2c25b7bca3569376f08b1d2cc57a1592;hp=c8bec5ea6704ec21fcb64435c8306ffc9f181ed9;hpb=e3dffa23a03cd9f88946ceb78bc75ada29bc013a;p=freeside.git diff --git a/httemplate/elements/tr-input-text.html b/httemplate/elements/tr-input-text.html index c8bec5ea6..49ae166ee 100644 --- a/httemplate/elements/tr-input-text.html +++ b/httemplate/elements/tr-input-text.html @@ -1,6 +1,6 @@ <% include('tr-td-label.html', @_ ) %> - > + > <% $opt{'prefix'} %> <% $maxlength %> - <% $align %> + <% $style %> + <% $opt{disabled} %> <% $onchange %> ><% $opt{'postfix'} %> @@ -34,11 +35,19 @@ my $maxlength = $opt{'maxlength'} ? 'MAXLENGTH="'. $opt{'maxlength'}. '"' : ''; -my $align = $opt{'text-align'} - ? 'STYLE="text-align: '. $opt{'text-align'}. '"' - : ''; +my @style = (); + +push @style, 'text-align: '. $opt{'text-align'} + if $opt{'text-align'}; + +push @style, 'background-color: #dddddd' + if $opt{'disabled'}; + +$opt{'disabled'} = 'DISABLED' + if $opt{'disabled'} && $opt{'disabled'} !~ /disabled/i; # uuh... yeah? +my $style = scalar(@style) ? 'STYLE="'. join(';', @style). '"' : ''; -my $style = $opt{'cell_style'} ? 'STYLE="'. $opt{'cell_style'}. '"' : ''; +my $cell_style = $opt{'cell_style'} ? 'STYLE="'. $opt{'cell_style'}. '"' : '';