Skip to content

Instantly share code, notes, and snippets.

@gzankevich
Created February 21, 2013 10:10
Show Gist options
  • Save gzankevich/5003680 to your computer and use it in GitHub Desktop.
Save gzankevich/5003680 to your computer and use it in GitHub Desktop.
Symfony2 + jQuery UI DateTime picker
// in the formtype
->add('my_datetime_field', 'datetime', array(
'widget' => 'single_text',
'required' => true,
))
// using jqueryui + http://trentrichardson.com/examples/timepicker/
$(element).datetimepicker({
dateFormat: 'dd/mm/yy',
timeFormat: 'hh:mm',
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment