NAME

HTML::Widget::Plugin::Textarea - a widget for a large text entry box

SYNOPSIS

$widget_factory->textarea({
  id    => 'elem-id', # also used as control name, if no name given
  value => $big_hunk_of_text,
});

DESCRIPTION

This plugin provides a text-entry area widget.

METHODS

provided_widgets

This plugin provides the following widgets: textarea

textarea

This method returns a text-entry area widget.

In addition to the generic HTML::Widget::Plugin attributes, the following are valid arguments:

disabled

If true, this option indicates that the widget can't be changed by the user.

value

If this argument is given, the widget will be initially populated by its value.

AUTHOR

Ricardo SIGNES <rjbs @ cpan.org>

COPYRIGHT

Copyright (C) 2005-2007, Ricardo SIGNES. This is free software, released under the same terms as perl itself.