Form::Factory::Control::SelectOne - A control for selecting a single item


Form-Factory documentation  | view source Contained in the Form-Factory distribution.

Index


NAME

Top

Form::Factory::Control::SelectOne - A control for selecting a single item

VERSION

Top

version 0.020

SYNOPSIS

Top

  has_control popup_menu => (
      control => 'select_one',
      options => {
          available_choices => [
              Form::Factory::Control::Choice->new('one'),
              Form::Factory::Control::Choice->new('two'),
              Form::Factory::Control::Choice->new('three'),
          ],
          default_value => 'two',
      },
  );

DESCRIPTION

Top

A select control that allows a single selection. A list of radio buttons or a drop-down box would be appropriate.

AUTHOR

Top

Andrew Sterling Hanenkamp <hanenkamp@cpan.org>

COPYRIGHT AND LICENSE

Top


Form-Factory documentation  | view source Contained in the Form-Factory distribution.