NAME
HTML::FormHandler::Field::DateTime
DESCRIPTION
This is a compound field that uses modified field names for the sub fields instead of using a separate sub-form. Widget type is 'compound'.
If you want to use drop-down select boxes for your DateTime, you can use fields like:
has_field 'my_date' => ( type => 'DateTime' );
has_field 'my_date.month' => ( type => 'Month' );
has_field 'my_date.day' => ( type => 'MonthDay' );
has_field 'my_date.year' => ( type => 'Year' );
has_field 'my_date.hour' => ( type => 'Hour' );
has_field 'my_date.minute' => ( type => 'Minute' );
If you want simple input fields:
has_field 'my_date' => ( type => 'DateTime' );
has_field 'my_date.month' => ( type => 'Integer', range_start => 1,
range_end => 12 );
has_field 'my_date.day' => ( type => 'Integer', range_start => 1,
range_end => 31 );
AUTHORS
Gerda Shank
LICENSE
This library is free software, you can redistribute it and/or modify it under the same terms as Perl itself.