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

NAME

HTML::Widget::Plugin::Checkbox - it's either [ ] or [x]

VERSION

version 0.204

SYNOPSIS

  $widget_factory->checkbox({
    id      => 'checkbox-id',    # also used as default for control name
    value   => 'checkbox-value', # -not- the "am I checked?" setting
    checked => $true_or_false,
  });

DESCRIPTION

This plugin provides a widget for boolean checkbox widgets.

METHODS

provided_widgets

This plugin provides the following widgets: checkbox

checkbox

This method returns a checkbox widget.

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

checked

This is the widget's initial state. If true, the checkbox is checked. Otherwise, it is not.

value

This is the value for the checkbox, not to be confused with whether or not it is checked.

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.