views:

29

answers:

1

I am using jquery datepicker widget all over my application always initializing it with the same method, the simplest one

$("[ID$=dueDate]").datepicker();

I have checked the documentation and there is nothing that seems to help on it. How can I have the datepicker to close when I click on a day?

A: 

Found the problem. I was using the jQuery timepicker addon available here. It caused the problem with the version I was using.

The latest version does not conflict anymore.

Lorenzo