I have a form with a datetime rendered as 5 select inputs d MM YYYY H-i
$builder
->add('date', 'datetime',
array(
'data' => new \DateTime('now'), //default value
'format' => 'd-MM-yyyy H-i-s',
'years' => array(2016, 2017),
)
)
->getForm();
I would like to customize the template and hide the character ":" between the minutes and seconds select inputs. How can I achieve this?
