diff options
Diffstat (limited to 'httemplate/elements/input-text.html')
| -rw-r--r-- | httemplate/elements/input-text.html | 44 | 
1 files changed, 44 insertions, 0 deletions
| diff --git a/httemplate/elements/input-text.html b/httemplate/elements/input-text.html new file mode 100644 index 000000000..9db064348 --- /dev/null +++ b/httemplate/elements/input-text.html @@ -0,0 +1,44 @@ +<% $opt{'prefix'} %><INPUT TYPE  = "<% $opt{type} || 'text' %>" +                           NAME  = "<% $opt{field} %>" +                           ID    = "<% $opt{id} %>" +                           VALUE = "<% $value |h %>" +                           <% $size %> +                           <% $maxlength %> +                           <% $style %> +                           <% $opt{disabled} %> +                           <% $onchange %> +                    ><% $opt{'postfix'} %> +<%init> + +my %opt = @_; + +my $value = length($opt{curr_value}) ? $opt{curr_value} : $opt{value}; + +my $onchange = $opt{'onchange'} +                 ? 'onChange="'. $opt{'onchange'}. '(this)"' +                 : ''; + +my $size = $opt{'size'} +             ? 'SIZE="'. $opt{'size'}. '"' +             : ''; + +my $maxlength = $opt{'maxlength'} +                ? 'MAXLENGTH="'. $opt{'maxlength'}. '"' +                : ''; + +$opt{'disabled'} = &{ $opt{'disabled'} }( \%opt ) +  if ref($opt{'disabled'}) eq 'CODE'; +$opt{'disabled'} = 'DISABLED' +  if $opt{'disabled'} && $opt{'disabled'} !~ /disabled/i; # uuh... yeah? + +my @style = (); + +push @style, 'text-align: '. $opt{'text-align'} +  if $opt{'text-align'}; + +push @style, 'background-color: #dddddd' +  if $opt{'disabled'}; + +my $style = scalar(@style) ? 'STYLE="'. join(';', @style). '"' : ''; + +</%init> | 
