The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

HTML::Widget::Plugin::Submit - for submit type inputs

VERSION

version 0.204

SYNOPSIS

  $widget_factory->submit({
    id    => 'button-id', # will be used as default control name, too
    value => 'button label',
  });

DESCRIPTION

This plugin provide a simple submit plugin, which returns an input element of type submit.

METHODS

provided_widgets

This plugin provides the following widgets: input

submit

This method returns a basic submit input.

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

value

This is the widget's initial value, which (for submit inputs) is generally used as the text for the label on its face.

AUTHOR

Ricardo SIGNES

COPYRIGHT AND LICENSE

This software is copyright (c) 2005 by Ricardo SIGNES.

This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.