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

NAME

HTML::SuperForm::Field::CheckboxGroup - CheckboxGroup field used by HTML::SuperForm

SYNOPSIS

 my $checkbox_group = HTML::SuperForm::Field::CheckboxGroup->new( name => 'my_checkbox_group',
                                                                  values => [ 1, 2, 3, 4 ],
                                                                  labels => { 1 => 'One',
                                                                              2 => 'Two',
                                                                              3 => 'Three',
                                                                              4 => 'Four' },
                                                                  rows => 2);

 print $checkbox_group;

SEE ALSO

 HTML::SuperForm::Field

AUTHOR

John Allwine <jallwine86@yahoo.com>