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

NAME

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

SYNOPSIS

 my $select = HTML::SuperForm::Field::Select->new( name => 'my_select',
                                                   values => [ 1, 2, 3, 4 ],
                                                   labels => { 1 => 'One',
                                                              2 => 'Two',
                                                              3 => 'Three',
                                                              4 => 'Four' },
                                                   multiple => 1);

 print $select;

SEE ALSO

 HTML::SuperForm::Field

AUTHOR

John Allwine <jallwine86@yahoo.com>