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

NAME

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

SYNOPSIS

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

 print $radio_group;

SEE ALSO

 HTML::SuperForm::Field

AUTHOR

John Allwine <jallwine86@yahoo.com>