| Form-Factory documentation | view source | Contained in the Form-Factory distribution. |
Form::Factory::Feature::Control::Required - Makes sure a value is set on a control
version 0.020
has_control last_name => (
control => 'text',
features => {
required => 1,
},
);
Reports a check error if the required value is not set. On scalar value controls, it checks that the value has a length greater than zero. On list value controls, it makes sure the list of selected items has more than zero elements.
No op.
Reports an error if a scalar value does not have a length greater than 0. Reports an error if a list value has 0 items in the list.
Andrew Sterling Hanenkamp <hanenkamp@cpan.org>
Copyright 2009 Qubling Software LLC.
This library is free software. You can redistribute it and/or modify it under the same terms as Perl itself.
| Form-Factory documentation | view source | Contained in the Form-Factory distribution. |