-
Notifications
You must be signed in to change notification settings - Fork 123
Open
Description
The documentation is not very clear about what format these should be in so, for those looking for the answer....
for start and end dates for current day the option might look like this:
dateTimeOptions = {
'format': 'dd/mm/yyyy HH:ii',
'autoclose': True,
'showMeridian' : True,
'endDate': str(datetime.datetime.today().date())
}
or
dateTimeOptions = {
'format': 'dd/mm/yyyy HH:ii',
'autoclose': True,
'showMeridian' : True,
'startDate': str(datetime.datetime.today().date())
}
You need to import datetime into your forms.py for the examples above to work. The javascript in the datetimewidget is expecting a string. The Javascript Date object is pretty happy with a variety of strings. See docs for ones you might ask Django to create or just add your own.
Ciao
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels