I am trying to make the jquery timepicker work with symfony.
In my form I have :
->add('workingDuration', 'datetime', array(
'label'=>'Temps de travail',
'required' => false,
'widget' => 'single_text',
'attr'=>array
(
'class'=>'timepicker'
)))
and in my javascript a simple $('.timpicker').timepicker().
But I have the following issues : - if my database field type is of type 'time', I get
'Error: Call to a member function format() on a non-object'
public function convertToDatabaseValue($value, AbstractPlatform $platform)
{
return ($value !== null)
? $value->format($platform->getTimeFormatString()) : null;
}
- if my form field is of type 'time', the timepicker just does not launch
- if the database field is of type datetime, as well as the form type, I have a full date stored to the database and when reading back this element, the timepicker addon does not recognize the format and does not initiate properly.
How can I do to make it work. Actually I'm looking forward to only store a short duration, hence the need for the timepicker.
Well, I finally figured out of to answer the dilemna.
Basically, I needed to convert a time / a string to a datetime object and vice versa so as to make the jquery addon time picker work to store a duration.
The answer is :
create a data Transformer which transforms a datetime object to time string and vice-versa :
namespace AppBundle\Form\DataTransformer;
use Symfony\Component\Form\DataTransformerInterface;
class DateTimeToDurationTransformer implements DataTransformerInterface
{ /** * @param mixed $dateTime * @internal param mixed $value * @return string */ public function transform($dateTime) { if (null === $dateTime) { return ""; }
}
create a custom TimePicker type to add to your forms
namespace AppBundle\Form\Type;
use Symfony\Component\Form\AbstractType; use Symfony\Component\Form\FormBuilderInterface; use AppBundle\Form\DataTransformer\DateTimeToDurationTransformer; use Symfony\Component\OptionsResolver\OptionsResolverInterface;
class TimePickerType extends AbstractType {
}
register the TimePicker type in your services
services: timepicker.type: class: %timepicker.type.class% tags: - { name: form.type, alias: timepicker }
use the newly created type in your form:
That's what it takes but it's working now!!
Also don't forget to use the timepicker with timeFormat HH:mm:ss