logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

HTML::FormHandler::Field::DateTime - compound DateTime field

Author

       FormHandler Contributors - see HTML::FormHandler

Description

       This is a compound field that requires you to define the subfields for month/day/year/hour/minute. Widget
       type is 'compound'.

       If you want to use drop-down select boxes for your DateTime, you can select 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 );

       Customizable error: 'datetime_invalid' (default = "Not a valid DateTime")

       See the 'Date' field for a single input date field.

Name

       HTML::FormHandler::Field::DateTime - compound DateTime field

Version

       version 0.40068

See Also