| Jifty documentation | Contained in the Jifty distribution. |
Jifty::Web::Form::Field::Time - Add time pickers to your forms
Output date fields with the class 'time'
| Jifty documentation | Contained in the Jifty distribution. |
use warnings; use strict; package Jifty::Web::Form::Field::Time; use base qw/Jifty::Web::Form::Field/;
sub classes { my $self = shift; my $classes = join ' ', $self->SUPER::classes; return $classes . ' time'; } 1;