En fait, il n'y a pas de problème lors de l’intégration avec cakephp. Voici ce que j'ai fait : **Dans la vue :** [code] <?php echo $this->Form->input('datetime', array( 'id' => 'datepicker', 'type' => 'text', 'label' => 'Heure / date de livraison', )); ?> [/code] Quelque pars dans la vue : [code]<script>
$(function() {
$("#datepicker").datepicker();
$("#datepicker").datepicker("setDate", new Date());
});
[code]</script>[/code]