Posted by drupal_sensei on July 11, 2012 at 4:23pm
This modules enables up the jquery ui datetimepicker library for you.
How to use it?
1. Download and enable this module.
2. Add the library in your module/theme
<?php
drupal_add_library('timepicker', 'jquery-ui-timepicker');
?>3. Add the Javascript to your field
$( ".MY_TIMEFIELD" ).datetimepicker({
dateFormat: "yy-mm-dd" ,
timeFormat: 'hh:mm',
});4. Be happy and up to date with the latest jquery ui datetimepicker.
