Mike Glen wrote:
> package MyCustomInflator::EndDate;
>
> use strict;
> use base 'HTML::FormFu::Inflator::DateTime';
>
> sub new {
> my $self = shift->SUPER::new( @_ );
> return $self;
> }
>
Solved: I need to add $self->parser( { strptime => '%d-%m-%Y %H:%M' } );
to the new method