
HTML::Shakan::Field::Choice - choice field

use HTML::Shakan::Field::Choice;
HTML::Shakan::Field::Choice->new(
name => 'pref',
choices => [qw/tokyo osaka kyoto/],
);
# or shortcut
use HTML::Shakan::Fields;
ChoiceField(
name => 'pref',
choices => [qw/tokyo osaka kyoto/],
);
# if you want radio button
ChoiceField(
name => 'pref',
choices => [qw/tokyo osaka kyoto/],
widget => 'radio',
);

Choice field implementation. This field may show in html as <select></select> tag.

HTML::Shakan::Field
