NAME

HTML::Widget::Element::Select - Select Element

SYNOPSIS

my $e = $widget->element( 'Select', 'foo' );
$e->comment('(Required)');
$e->label('Foo');
$e->size(23);
$e->options( foo => 'Foo', bar => 'Bar' );
$e->selected(qw/foo bar/);

DESCRIPTION

Select Element.

METHODS

$self->render( $widget, $value, $errors )

AUTHOR

Sebastian Riedel, sri@oook.de

LICENSE

This library is free software, you can redistribute it and/or modify it under the same terms as Perl itself.