views:

64

answers:

2

I love the Thauber Schedule datepicker, but it's a datetime picker and I can't get it to just do dates. Any recommendations for nice looking datepickers that come with instructions on how to integrate with a Django date form field?

+1  A: 

If you're comfortable with the Django Admin's date widget, you can include that in your app. The advantage is no external dependencies. Someone posted a how-to on the django-users group some time ago:

ars
Thanks, Ars! I actually saw the SO post on that method which had kind of scared me off: http://bit.ly/br5lLG
Michael Morisy
+1  A: 

You can also simply use Jquery in your templates. The jquery DateTime Picker allows each customization.

http://jqueryui.com/demos/datepicker/

Ali
Thanks. I'd never dug into JQuery, but a few hours of puttering around it got me exactly where I wanted to be.
Michael Morisy
Np, good luck with your project. But remember, Jquery is simply javascript on the client side. It is thus possible for someone to post data to your form class with incorrect or malicious data, thus validate everything and put the view actions in a try/except clause.
Ali